<!-- CSE HTML Validator Standard/Professional/Lite PHP Inserter Configuration by AI Internet Solutions (http://www.htmlvalidator.com/) -->
<!-- Last updated: January 30, 2004 -->
<!-- IMPORTANT! If you modify or customize this file, make a backup because it may be overwritten the next time you install or reinstall HTML Validator. If you want to customize this configuration file, consider customizing the User Inserter instead. -->
<!-- For detailed documentation about this file, see the "Text Inserters" topic in help. -->
<!-- NOTE: This document is not 100% XML compliant. Each comment and each tag must be on one and only one line. -->
<!-- flags: 1-press enter after inserting text, 2-don't change (preserve) case when inserting text, 4-line separator, 8-close (actually hide) tag inserter (new v4.51), 16-CSS property (new v5.02), 32-don't change case if XHTML document (new v5.4910), 64-add quick close if XHTML document -->
<!-- inserttext:
to simulate pressing the enter key, to simulate pressing the tab key, to simulate pressing the backspace key -->
<csetaginserterconfiguration version="1">
<tag menu='PHP' inserttext='"|"' hint='Enclose text in double quotes.' flags='2'/>
<tag menu='PHP' inserttext="'|'" hint='Enclose text in single quotes.' flags='2'/>
<tag menu='PHP' inserttext='(|)' hint='Enclose text in parenthesis.' flags='2'/>
<tag menu='PHP' inserttext='[|]' hint='Enclose text in square brackets.' flags='2'/>
<tag menu='PHP' flags='4'/>
<tag menu='PHP' caption='Edit Configuration' hint='Edit the configuration file to make your own additions and changes to the PHP Inserter.' command='1' flags='0'/>
<tag menu='PHP' caption='Reload Configuration' hint='Delete the PHP Inserter and recreate it to reread its configuration.' command='2' flags='0'/>
<tag menu='A' submenu='Apache-specific' inserttext='apache_child_terminate()' hint='bool apache_child_terminate(void) - Terminate apache process after this request. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='A' submenu='Apache-specific' inserttext='apache_get_modules()' hint='array apache_get_modules(void) - Get a list of loaded Apache modules. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='A' submenu='Apache-specific' inserttext='apache_getenv(|)' hint='string apache_getenv(string variable [, bool walk_to_top]) - Get an Apache subprocess_env variable. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='A' submenu='Apache-specific' inserttext='apache_lookup_uri(|)' hint='object apache_lookup_uri(string filename) - Perform a partial request for the specified URI and return all info about it. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='A' submenu='Apache-specific' inserttext='apache_note(|)' hint='string apache_note(string note_name [, string note_value]) - Get and set apache request notes. (PHP 3>=3.0.2, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_change_key_case(|)' hint='array array_change_key_case(array input [, int case]) - Returns an array with all string keys lowercased or uppercased. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_chunk(|)' hint='array array_chunk(array input, int size [, bool preserve_keys]) - Split an array into chunks. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_combine(|)' hint='array array_combine(array keys, array values) - Creates an array by using one array for keys and another for its values. (PHP 5 CVS only)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_count_values(|)' hint='array array_count_values(array input) - Counts all the values of an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_diff_assoc(|)' hint='array array_diff_assoc(array array1, array array2 [, array ...]) - Computes the difference of arrays with additional index check. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_diff_uassoc(|)' hint='array array_diff_uassoc(array array1, array array2 [, array ..., callback key_compare_func]) - Computes the difference of arrays with additional index check which is performed by a user supplied callback function.' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_fill(|)' hint='array array_fill(int start_index, int num, mixed value) - Fill an array with values. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_filter(|)' hint='array array_filter(array input [, callback callback]) - Filters elements of an array using a callback function. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_flip(|)' hint='array array_flip(array trans) - Exchanges all keys with their associated values in an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_intersect_assoc(|)' hint='array array_intersect_assoc(array array1, array array2 [, array ...]) - Computes the intersection of arrays with additional index check. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_key_exists(|)' hint='bool array_key_exists(mixed key, array search) - Checks if the given key or index exists in the array. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_keys(|)' hint='array array_keys(array input [, mixed search_value]) - Return all the keys of an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_map(|)' hint='array array_map(mixed callback, array arr1 [, array ...]) - Applies the callback to the elements of the given arrays. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_merge(|)' hint='array array_merge(array array1, array array2 [, array ...]) - Merge two or more arrays. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_merge_recursive(|)' hint='array array_merge_recursive(array array1, array array2 [, array ...]) - Merge two or more arrays recursively. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_pad(|)' hint='array array_pad(array input, int pad_size, mixed pad_value) - Pad array to the specified length with a value. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>a - array_po' inserttext='array_pop(|)' hint='mixed array_pop(array array) - Pop the element off the end of array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_push(|)' hint='int array_push(array array, mixed var [, mixed ...]) - Push one or more elements onto the end of array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_rand(|)' hint='mixed array_rand(array input [, int num_req]) - Pick one or more random entries out of an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_reduce(|)' hint='mixed array_reduce(array input, callback function [, int initial]) - Iteratively reduce the array to a single value using a callback function. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_reverse(|)' hint='array array_reverse(array array [, bool preserve_keys]) - Return an array with elements in reverse order. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_search(|)' hint='mixed array_search(mixed needle, array haystack [, bool strict]) - Searches the array for a given value and returns the corresponding key if successful. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_shift(|)' hint='mixed array_shift(array array) - Shift an element off the beginning of array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_slice(|)' hint='array array_slice(array array, int offset [, int length]) - Extract a slice of the array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_splice(|)' hint='array array_splice(array input, int offset [, int length [, array replacement]]) - Remove a portion of the array and replace it with something else. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_sum(|)' hint='mixed array_sum(array array) - Calculate the sum of values in an array. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_udiff(|)' hint='array array_udiff(array array1, array array2 [, array ..., callback data_compare_func]) - Computes the difference of arrays by using a callback function for data comparison.' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_udiff_assoc(|)' hint='array array_udiff_assoc(array array1, array array2 [, array ..., callback data_compare_func]) - Computes the difference of arrays with additional index check. The data is compared by using a callback function.' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_udiff_uassoc(|)' hint='array array_udiff_uassoc(array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func]) - Computes the difference of arrays with additional index check. The data is compared by using a callback function. The index check is done by a callback function also.' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_unique(|)' hint='array array_unique(array array) - Removes duplicate values from an array. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_unshift(|)' hint='int array_unshift(array array, mixed var [, mixed ...]) - Prepend one or more elements to the beginning of an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_values(|)' hint='array array_values(array input) - Return all the values of an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='array_walk(|)' hint='bool array_walk(array array, callback function [, mixed userdata]) - Apply a user function to every member of an array. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='arsort(|)' hint='bool arsort(array array [, int sort_flags]) - Sort an array in reverse order and maintain index association. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='asort(|)' hint='bool asort(array array [, int sort_flags]) - Sort an array and maintain index association. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='compact(|)' hint='array compact(mixed varname [, mixed ...]) - Create array containing variables and their values. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='count(|)' hint='int count(mixed var [, int mode]) - Count elements in a variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>array_pu - c' inserttext='current(|)' hint='mixed current(array array) - Return the current element in an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='each(|)' hint='array each(array array) - Return the current key and value pair from an array and advance the array cursor. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='end(|)' hint='mixed end(array array) - Set the internal pointer of an array to its last element. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='extract(|)' hint='int extract(array var_array [, int extract_type [, string prefix]]) - Import variables into the current symbol table from an array. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='in_array(|)' hint='bool in_array(mixed needle, array haystack [, bool strict]) - Checks if a value exists in an array. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='key(|)' hint='mixed key(array array) - Fetch a key from an associative array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='krsort(|)' hint='bool krsort(array array [, int sort_flags]) - Sort an array by key in reverse order. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='ksort(|)' hint='bool ksort(array array [, int sort_flags]) - Sort an array by key. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='list(|)' hint='void list(mixed ...) - Assign variables as if they were an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='natcasesort(|)' hint='void natcasesort(array array) - Sort an array using a case insensitive "natural order" algorithm. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='natsort(|)' hint='void natsort(array array) - Sort an array using a "natural order" algorithm. (PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='next(|)' hint='mixed next(array array) - Advance the internal array pointer of an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='pos(|)' hint='mixed pos(array array) - Get the current element from an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='range(|)' hint='array range(int low, int high [, int step]) - Create an array containing a range of elements. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='reset(|)' hint='mixed reset(array array) - Set the internal pointer of an array to its first element. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='rsort(|)' hint='bool rsort(array array [, int sort_flags]) - Sort an array in reverse order. (PHP 3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='uasort(|)' hint='bool uasort(array array, callback cmp_function) - Sort an array with a user-defined comparison function and maintain index association. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='uksort(|)' hint='bool uksort(array array, callback cmp_function) - Sort an array by keys using a user-defined comparison function. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='A' submenu='Array-->>e - u' inserttext='usort(|)' hint='bool usort(array array, callback cmp_function) - Sort an array by values using a user-defined comparison function. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='A' submenu='Aspell [deprecated]' inserttext='aspell_check(|)' hint='bool aspell_check(int dictionary_link, string word) - Check a word [deprecated]. (PHP 3>=3.0.7, PHP 4<=4.2.3)' flags='130'/>
<tag menu='A' submenu='Aspell [deprecated]' inserttext='aspell_check_raw(|)' hint='bool aspell_check_raw(int dictionary_link, string word) - Check a word without changing its case or trying to trim it [deprecated]. (PHP 3>=3.0.7, PHP 4<=4.2.3)' flags='130'/>
<tag menu='B' submenu='BCMath Arbitrary Precision Mathematics' inserttext='bcpow(|)' hint='string bcpow(string x, string y [, int scale]) - Raise an arbitrary precision number to another. (PHP 3, PHP 4)' flags='130'/>
<tag menu='B' submenu='BCMath Arbitrary Precision Mathematics' inserttext='bcpowmod(|)' hint='string bcpowmod(string x, string y, string modulus [, int scale]) - Raise an arbitrary precision number to another, reduced by a specified modulus. (PHP 5 CVS only)' flags='130'/>
<tag menu='B' submenu='BCMath Arbitrary Precision Mathematics' inserttext='bcscale(|)' hint='bool bcscale(int scale) - Set default scale parameter for all bc math functions. (PHP 3, PHP 4)' flags='130'/>
<tag menu='B' submenu='BCMath Arbitrary Precision Mathematics' inserttext='bcsqrt(|)' hint='string bcsqrt(string operand [, int scale]) - Get the square root of an arbitrary precision number. (PHP 3, PHP 4)' flags='130'/>
<tag menu='B' submenu='BCMath Arbitrary Precision Mathematics' inserttext='bcsub(|)' hint='string bcsub(string left_operand, string right_operand [, int scale]) - Subtract one arbitrary precision number from another. (PHP 3, PHP 4)' flags='130'/>
<tag menu='B' submenu='Bzip2 Compression' inserttext='bzclose(|)' hint='int bzclose(resource bz) - Close a bzip2 file pointer. (4.0.4-4.3.2 only)' flags='130'/>
<tag menu='B' submenu='Bzip2 Compression' inserttext='bzcompress(|)' hint='string bzcompress(string source [, int blocksize [, int workfactor]]) - Compress a string into bzip2 encoded data. (4.0.4-4.3.2 only)' flags='130'/>
<tag menu='B' submenu='Bzip2 Compression' inserttext='bzerror(|)' hint='array bzerror(resource bz) - Returns the bzip2 error number and error string in an array. (4.0.4-4.3.2 only)' flags='130'/>
<tag menu='B' submenu='Bzip2 Compression' inserttext='bzflush(|)' hint='int bzflush(resource bz) - Force a write of all buffered data. (4.0.4-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_addref()' hint='void com_addref(void) - Increases the components reference counter. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_get(|)' hint="mixed com_get(resource com_object, string property) - Gets the value of a COM Component's property. (PHP 3>=3.0.3, 4.0.5-4.3.2 only)" flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_invoke(|)' hint="mixed com_invoke(resource com_object, string function_name [, mixed function parameters, ...]) - Calls a COM component's method. (PHP 3>=3.0.3)" flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_isenum(|)' hint='void com_isenum(object com_module) - Grabs an IEnumVariant. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_load(|)' hint='string com_load(string module_name [, string server_name [, int codepage]]) - Creates a new reference to a COM component. (PHP 3>=3.0.3)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_load_typelib(|)' hint='void com_load_typelib(string typelib_name [, int case_insensitive]) - Loads a Typelib. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_propget(|)' hint='com_propget - Alias of com_get().' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_propput(|)' hint='com_propput - Alias of com_set().' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_propset(|)' hint='com_propset - Alias of com_set().' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_release()' hint='void com_release(void) - Decreases the components reference counter. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='COM support for Windows' inserttext='com_set(|)' hint="void com_set(resource com_object, string property, mixed value) - Assigns a value to a COM component's property. (PHP 3>=3.0.3, 4.0.5-4.3.2 only)" flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_close(|)' hint='void curl_close(resource ch) - Close a CURL session. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_errno(|)' hint='int curl_errno(resource ch) - Return the last error number. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_error(|)' hint='string curl_error(resource ch) - Return a string containing the last error for the current session. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_getinfo(|)' hint='string curl_getinfo(resource ch [, int opt]) - Get information regarding a specific transfer. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_add_handle(|)' hint='int curl_multi_add_handle(resource mh, resource ch) - Add a normal cURL handle to a cURL multi handle. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_close(|)' hint='void curl_multi_close(resource mh) - Close a set of cURL handles. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_exec(|)' hint='int curl_multi_exec(resource mh) - Run the sub-connections of the current cURL handle. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_getcontent(|)' hint='string curl_multi_getcontent(resource ch) - Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_info_read(|)' hint='array curl_multi_info_read(resource mh) - Get information about the current transfers. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_init()' hint='resource curl_multi_init(void) - Returns a new cURL multi handle. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_remove_handle(|)' hint='int curl_multi_remove_handle(resource mh, resource ch) - Remove a multi handle from a set of cURL handles. (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_multi_select(|)' hint='int curl_multi_select(resource mh [, float timeout]) - Get all the sockets associated with the cURL extension, which can then be "selected". (PHP 5 CVS only)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_setopt(|)' hint='bool curl_setopt(resource ch, string option, mixed value) - Set an option for a CURL transfer. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='C' submenu='CURL, Client URL Library' inserttext='curl_version()' hint='string curl_version(void) - Return the current CURL version. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='FrenchToJD(|)' hint='int FrenchToJD(int month, int day, int year) - Converts a date from the French Republican Calendar to a Julian Day Count. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='GregorianToJD(|)' hint='int GregorianToJD(int month, int day, int year) - Converts a Gregorian date to Julian Day Count. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JDDayOfWeek(|)' hint='mixed JDDayOfWeek(int julianday, int mode) - Returns the day of the week. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JDMonthName(|)' hint='string JDMonthName(int julianday, int mode) - Returns a month name. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JDToFrench(|)' hint='string JDToFrench(int juliandaycount) - Converts a Julian Day Count to the French Republican Calendar. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JDToGregorian(|)' hint='string JDToGregorian(int julianday) - Converts Julian Day Count to Gregorian date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JDToJulian(|)' hint='string JDToJulian(int julianday) - Converts a Julian Day Count to a Julian Calendar Date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JewishToJD(|)' hint='int JewishToJD(int month, int day, int year) - Converts a date in the Jewish Calendar to Julian Day Count. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='JulianToJD(|)' hint='int JulianToJD(int month, int day, int year) - Converts a Julian Calendar date to Julian Day Count. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='cal_days_in_month(|)' hint='int cal_days_in_month(int calendar, int month, int year) - Return the number of days in a month for a given year and calendar. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='cal_from_jd(|)' hint='array cal_from_jd(int jd, int calendar) - Converts from Julian Day Count to a supported calendar. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='cal_info(|)' hint='array cal_info([int calendar]) - Returns information about a particular calendar. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='cal_to_jd(|)' hint='int cal_to_jd(int calendar, int month, int day, int year) - Converts from a supported calendar to Julian Day Count. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='easter_date(|)' hint='int easter_date([int year]) - Get Unix timestamp for midnight on Easter of a given year. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='easter_days(|)' hint='int easter_days([int year [, int method]]) - Get number of days after March 21 on which Easter falls for a given year. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='jdtojewish(|)' hint='string jdtojewish(int juliandaycount [, bool hebrew [, int fl]]) - Converts a Julian day count to a Jewish calendar date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Calendar' inserttext='jdtounix(|)' hint='int jdtounix(int jday) - Convert Julian Day to Unix timestamp. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Character type' inserttext='ctype_punct(|)' hint='bool ctype_punct(string text) - Check for any printable character which is not whitespace or an alphanumeric character. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='C' submenu='Character type' inserttext='ctype_xdigit(|)' hint='bool ctype_xdigit(string text) - Check for character(s) representing a hexadecimal digit. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='call_user_method(|)' hint='mixed call_user_method(string method_name, object obj [, mixed parameter [, mixed ...]]) - Call a user method on an specific object [deprecated]. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='call_user_method_array(|)' hint='mixed call_user_method_array(string method_name, object obj [, array paramarr]) - Call a user method given with an array of parameters [deprecated]. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='class_exists(|)' hint='bool class_exists(string class_name) - Checks if the class has been defined. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_class(|)' hint='string get_class(object obj) - Returns the name of the class of an object. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_class_methods(|)' hint="array get_class_methods(mixed class_name) - Returns an array of class methods' names. (PHP 4)" flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_class_vars(|)' hint='array get_class_vars(string class_name) - Returns an array of default properties of the class. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_declared_classes()' hint='array get_declared_classes(void) - Returns an array with the name of the defined classes. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_object_vars(|)' hint='array get_object_vars(object obj) - Returns an associative array of object properties. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='get_parent_class(|)' hint='string get_parent_class(mixed obj) - Retrieves the parent class name for object or class. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='is_a(|)' hint='bool is_a(object object, string class_name) - Returns TRUE if the object is of this class or has this class as one of its parents. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='is_subclass_of(|)' hint='bool is_subclass_of(object object, string class_name) - Returns TRUE if the object has this class as one of its parents. (PHP 4)' flags='130'/>
<tag menu='C' submenu='Class/Object' inserttext='method_exists(|)' hint='bool method_exists(object object, string method_name) - Checks if the class method exists. (PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>c - cpdf_g' inserttext='cpdf_add_outline(|)' hint='int cpdf_add_outline(int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text) - Adds bookmark for current page. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>c - cpdf_g' inserttext='cpdf_arc(|)' hint='bool cpdf_arc(int pdf_document, float x-coor, float y-coor, float radius, float start, float end [, int mode]) - Draws an arc. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>c - cpdf_g' inserttext='cpdf_global_set_document_limits(|)' hint='bool cpdf_global_set_document_limits(int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects) - Sets document limits for any pdf document. (PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_creator(|)' hint='bool cpdf_set_creator(string creator) - Sets the creator field in the pdf document. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_current_page(|)' hint='bool cpdf_set_current_page(int pdf_document, int page_number) - Sets current page. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_font(|)' hint='bool cpdf_set_font(int pdf_document, string font_name, float size, string encoding) - Select the current font face and size. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_font_directories(|)' hint='bool cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir) - Sets directories to search when using external fonts. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_font_map_file(|)' hint='bool cpdf_set_font_map_file(int pdfdoc, string filename) - Sets fontname to filename translation map when using external fonts. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_keywords(|)' hint='bool cpdf_set_keywords(string keywords) - Sets the keywords field of the pdf document. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_subject(|)' hint='bool cpdf_set_subject(int pdf_document, string subject) - Sets the subject field of the pdf document. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_title(|)' hint='bool cpdf_set_title(string title) - Sets the title field of the pdf document. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_set_c - cpdf_set_' inserttext='cpdf_set_viewer_preferences(|)' hint='bool cpdf_set_viewer_preferences(int pdfdoc, array preferences) - How to show the document in the viewer. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_setrgbcolor(|)' hint='bool cpdf_setrgbcolor(int pdf_document, float red_value, float green_value, float blue_value) - Sets drawing and filling color to rgb color value. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_setrgbcolor_fill(|)' hint='bool cpdf_setrgbcolor_fill(int pdf_document, float red_value, float green_value, float blue_value) - Sets filling color to rgb color value. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_setrgbcolor_stroke(|)' hint='bool cpdf_setrgbcolor_stroke(int pdf_document, float red_value, float green_value, float blue_value) - Sets drawing color to rgb color value. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_show(|)' hint='bool cpdf_show(int pdf_document, string text) - Output text at current position. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_show_xy(|)' hint='bool cpdf_show_xy(int pdf_document, string text, float x-coor, float y-coor [, int mode]) - Output text at position. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_stringwidth(|)' hint='float cpdf_stringwidth(int pdf_document, string text) - Returns width of text in current font. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_stroke(|)' hint='bool cpdf_stroke(int pdf_document) - Draw line along path. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_text(|)' hint='bool cpdf_text(int pdf_document, string text, float x-coor, float y-coor [, int mode [, float orientation [, int alignmode]]]) - Output text with parameters. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='ClibPDF-->>cpdf_setd - c' inserttext='cpdf_translate(|)' hint='bool cpdf_translate(int pdf_document, float x-coor, float y-coor [, int mode]) - Sets origin of coordinate system. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='C' submenu='Crack' inserttext='crack_check(|)' hint='bool crack_check([resource dictionary, string password]) - Performs an obscure check with the given password. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='C' submenu='Crack' inserttext='crack_closedict(|)' hint='bool crack_closedict([resource dictionary]) - Closes an open CrackLib dictionary. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='C' submenu='Crack' inserttext='crack_getlastmessage()' hint='string crack_getlastmessage(void) - Returns the message from the last obscure check. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='C' submenu='Crack' inserttext='crack_opendict(|)' hint='resource crack_opendict(string dictionary) - Opens a new CrackLib dictionary. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='C' submenu='Cyrus IMAP administration' inserttext='cyrus_authenticate(|)' hint='bool cyrus_authenticate(resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf]]]]]) - Authenticate against a Cyrus IMAP server. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='Cyrus IMAP administration' inserttext='cyrus_bind(|)' hint='bool cyrus_bind(resource connection, array callbacks) - Bind callbacks to a Cyrus IMAP connection. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='Cyrus IMAP administration' inserttext='cyrus_close(|)' hint='bool cyrus_close(resource connection) - Close connection to a Cyrus IMAP server. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='Cyrus IMAP administration' inserttext='cyrus_connect(|)' hint='resource cyrus_connect([string host [, string port [, int flags]]]) - Connect to a Cyrus IMAP server. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='C' submenu='Cyrus IMAP administration' inserttext='cyrus_query(|)' hint='bool cyrus_query(resource connection, string query) - Send a query to a Cyrus IMAP server. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->create_element(|)' hint='object DomDocument->create_element(string name) - Create new element node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->create_element_ns(|)' hint='object DomDocument->create_element_ns(string uri, string name [, string prefix]) - Create new element node with an associated namespace.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->dump_file(|)' hint='string DomDocument->dump_file(string filename [, bool compressionmode [, bool format]]) - Dumps the internal XML tree back into a file.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->dump_mem(|)' hint='string DomDocument->dump_mem([bool format [, string encoding]]) - Dumps the internal XML tree back into a string.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->get_element_by_id(|)' hint='object DomDocument->get_element_by_id(string id) - Searches for an element with a certain id.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->html_dump_mem()' hint='string DomDocument->html_dump_mem(void) - Dumps the internal XML tree back into a string as HTML.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>D - DomDocument-' inserttext='DomDocument->xinclude()' hint='int DomDocument->xinclude(void) - Substitutes XIncludes in a DomDocument Object.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomDocumentType->entities()' hint='array DomDocumentType->entities(void) - Returns list of entities.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomElement->tagname()' hint='string DomElement->tagname(void) - Returns name of element.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomNode->add_namespace(|)' hint='bool DomNode->add_namespace(string uri, string prefix) - Adds a namespace declaration to a node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomNode->append_child(|)' hint='object DomNode->append_child(object newnode) - Adds new child at the end of the children.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomNode->append_sibling(|)' hint='object DomNode->append_sibling(object newnode) - Adds new sibling to a node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomNode->attributes()' hint='array DomNode->attributes(void) - Returns list of attributes.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomDocumentT - DomNode->d' inserttext='DomNode->child_nodes()' hint='array DomNode->child_nodes(void) - Returns children of node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='DomProcessingInstruction->data()' hint='string DomProcessingInstruction->data(void) - Returns data of pi node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='DomProcessingInstruction->target()' hint='string DomProcessingInstruction->target(void) - Returns target of pi node.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='DomXsltStylesheet->process(|)' hint='object DomXsltStylesheet->process(object DomDocument [, array xslt_parameters [, bool param_is_xpath]]) - Applies the XSLT-Transformation on a DomDocument Object.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='DomXsltStylesheet->result_dump_file(|)' hint='string DomXsltStylesheet->result_dump_file(object DomDocument, string filename) - Dumps the result from a XSLT-Transformation into a file.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='DomXsltStylesheet->result_dump_mem(|)' hint='string DomXsltStylesheet->result_dump_mem(object DomDocument) - Dumps the result from a XSLT-Transformation back into a string.' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_new_doc(|)' hint='object domxml_new_doc(string version) - Creates new empty XML document. (PHP 4>=4.2.1)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_open_file(|)' hint='object domxml_open_file(string filename) - Creates a DOM object from XML file. (PHP 4>=4.2.1)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_open_mem(|)' hint='object domxml_open_mem(string str) - Creates a DOM object of an XML document. (PHP 4>=4.2.1)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_version()' hint='string domxml_version(void) - Get XML library version. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_xmltree(|)' hint='object domxml_xmltree(string str) - Creates a tree of PHP objects from an XML document. (PHP 4>=4.2.1)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_xslt_stylesheet(|)' hint='object domxml_xslt_stylesheet(string xsl document) - Creates a DomXsltStylesheet Object from an XML document in a string. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_xslt_stylesheet_doc(|)' hint='object domxml_xslt_stylesheet_doc(object DocDocument Object) - Creates a DomXsltStylesheet Object from a DomDocument Object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='domxml_xslt_stylesheet_file(|)' hint='object domxml_xslt_stylesheet_file(string xsl file) - Creates a DomXsltStylesheet Object from an XSL document in a file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='xpath_eval(|)' hint='array xpath_eval(object xpath context, string xpath expression [, object contextnode]) - Evaluates the XPath Location Path in the given string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='xpath_eval_expression(|)' hint='array xpath_eval_expression(object xpath_context) - Evaluates the XPath Location Path in the given string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='xpath_new_context(|)' hint='object xpath_new_context(object dom document) - Creates new xpath context. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='D' submenu='DOM XML-->>DomNode->set_names - x' inserttext='xptr_eval(|)' hint='int xptr_eval([object xpath_context, string eval_str]) - Evaluate the XPtr Location Path in the given string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='checkdate(|)' hint='bool checkdate(int month, int day, int year) - Validate a Gregorian date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='date(|)' hint='string date(string format [, int timestamp]) - Format a local time/date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='getdate(|)' hint='array getdate([int timestamp]) - Get date/time information. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='gettimeofday()' hint='array gettimeofday(void) - Get current time. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='gmdate(|)' hint='string gmdate(string format [, int timestamp]) - Format a GMT/UTC date/time. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='gmmktime(|)' hint='int gmmktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) - Get Unix timestamp for a GMT date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='gmstrftime(|)' hint='string gmstrftime(string format [, int timestamp]) - Format a GMT/UTC time/date according to locale settings. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='localtime(|)' hint='array localtime([int timestamp [, bool is_associative]]) - Get the local time. (PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='microtime(|)' hint='mixed microtime([bool get_as_float]) - Return current Unix timestamp with microseconds. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='mktime(|)' hint='int mktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) - Get Unix timestamp for a date. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='strftime(|)' hint='string strftime(string format [, int timestamp]) - Format a local time/date according to locale settings. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='strtotime(|)' hint='int strtotime(string time [, int now]) - Parse about any English textual datetime description into a Unix timestamp. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='D' submenu='Date and Time' inserttext='time()' hint='int time(void) - Return current Unix timestamp. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_close(|)' hint='void dio_close(resource fd) - Closes the file descriptor given by fd. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_fcntl(|)' hint='mixed dio_fcntl(resource fd, int cmd [, mixed arg]) - Performs a c library fcntl on fd. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_open(|)' hint='resource dio_open(string filename, int flags [, int mode]) - Opens a new filename with specified permissions of flags and creation permissions of mode. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_read(|)' hint='string dio_read(resource fd [, int n]) - Reads n bytes from fd and returns them, if n is not specified, reads 1k block. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_seek(|)' hint='int dio_seek(resource fd, int pos, int whence) - Seeks to pos on fd from whence. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_stat(|)' hint='array dio_stat(resource fd) - Gets stat information about the file descriptor fd. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_tcsetattr(|)' hint='dio_tcsetattr(resource fd, array options) - Sets terminal attributes and baud rate for a serial port. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='D' submenu='Direct IO' inserttext='dio_write(|)' hint='int dio_write(resource fd, string data [, int len]) - Writes data to fd with optional truncation at length. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_delete_record(|)' hint='bool dbase_delete_record(int dbase_identifier, int record) - Deletes a record from a dBase database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_get_header_info(|)' hint='array dbase_get_header_info(int dbase_identifier) - Get the header info of a dBase database.' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_get_record(|)' hint='array dbase_get_record(int dbase_identifier, int record) - Gets a record from a dBase database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_get_record_with_names(|)' hint='array dbase_get_record_with_names(int dbase_identifier, int record) - Gets a record from a dBase database as an associative array. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_numfields(|)' hint='int dbase_numfields(int dbase_identifier) - Find out how many fields are in a dBase database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_numrecords(|)' hint='int dbase_numrecords(int dbase_identifier) - Find out how many records are in a dBase database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_open(|)' hint='int dbase_open(string filename, int flags) - Opens a dBase database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='D' submenu='dBase' inserttext='dbase_replace_record(|)' hint='bool dbase_replace_record(int dbase_identifier, array record, int dbase_record_number) - Replace a record in a dBase database. (PHP 3>=3.0.11, PHP 4)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_close(|)' hint='bool dbx_close(object link_identifier) - Close an open connection/database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_compare(|)' hint='int dbx_compare(array row_a, array row_b, string column_key [, int flags]) - Compare two rows for sorting purposes. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_connect(|)' hint='object dbx_connect(mixed module, string host, string database, string username, string password [, int persistent]) - Open a connection/database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_error(|)' hint='string dbx_error(object link_identifier) - Report the error message of the latest function call in the module (not just in the connection). (PHP 4>=4.0.6)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_escape_string(|)' hint='string dbx_escape_string(object link_identifier, string text) - Escape a string so it can safely be used in an sql-statement. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_fetch_row(|)' hint='object dbx_fetch_row(object result_identifier) - Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set.' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_query(|)' hint='object dbx_query(object link_identifier, string sql_statement [, int flags]) - Send a query and fetch all results (if any). (PHP 4>=4.0.6)' flags='130'/>
<tag menu='D' submenu='dbx' inserttext='dbx_sort(|)' hint='bool dbx_sort(object result, string user_compare_function) - Sort a result from a dbx_query by a custom sort function. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='debug_backtrace()' hint='array debug_backtrace(void) - Generates a backtrace. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='debug_print_backtrace()' hint='void debug_print_backtrace(void) - Prints a backtrace. (PHP 5 CVS only)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='error_log(|)' hint='int error_log(string message [, int message_type [, string destination [, string extra_headers]]]) - Send an error message somewhere. (PHP 3, PHP 4)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='error_reporting(|)' hint='int error_reporting([int level]) - Sets which PHP errors are reported. (PHP 3, PHP 4)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='fam_close(|)' hint='void fam_close(resource fam) - Close FAM connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='fam_monitor_collection(|)' hint='resource fam_monitor_collection(resource fam, string dirname, int depth, string mask) - Monitor a collection of files in a directory for changes. (PHP 5 CVS only)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='fam_monitor_directory(|)' hint='resource fam_monitor_directory(resource fam, string dirname) - Monitor a directory for changes. (PHP 5 CVS only)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='fam_monitor_file(|)' hint='resource fam_monitor_file(resource fam, string filename) - Monitor a regular file for changes. (PHP 5 CVS only)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='restore_error_handler()' hint='void restore_error_handler(void) - Restores the previous error handler function. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='set_error_handler(|)' hint='string set_error_handler(callback error_handler) - Sets a user-defined error handler function. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='trigger_error(|)' hint='void trigger_error(string error_msg [, int error_type]) - Generates a user-level error/warning/notice message. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='E' submenu='Error Handling and Logging' inserttext='user_error(|)' hint='user_error - Terminate monitoringfam_close -- Close FAM connectionfam_monitor_collection -- Monitor a collection of files in a directory for changesfam_monitor_directory -- Monitor a directory for changesfam_monitor_file -- Monitor a regular file for changesfam_next_event -- ...fam_open -- Open connection to FAM daemonfam_pending -- Check for pending FAM eventsfam_resume_monitor -- Resume suspended monitoringfam_suspend_monitor -- Temporarily suspend monitoring. <B>Table 1. FAM constants</B>' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_alloc(|)' hint='bool ftp_alloc(resource ftp_stream, int filesize [, string &result]) - Allocates space for a file to be uploaded.' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_cdup(|)' hint='bool ftp_cdup(resource ftp_stream) - Changes to the parent directory. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_connect(|)' hint='resource ftp_connect(string host [, int port [, int timeout]]) - Opens an FTP connection. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_delete(|)' hint='bool ftp_delete(resource ftp_stream, string path) - Deletes a file on the FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_exec(|)' hint='bool ftp_exec(resource ftp_stream, string command) - Requests execution of a program on the FTP server. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_fget(|)' hint='bool ftp_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) - Downloads a file from the FTP server and saves to an open file. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_fput(|)' hint='bool ftp_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) - Uploads from an open file to the FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_get(|)' hint='bool ftp_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) - Downloads a file from the FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_get_option(|)' hint='mixed ftp_get_option(resource ftp_stream, int option) - Retrieves various runtime behaviours of the current FTP stream. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_login(|)' hint='bool ftp_login(resource ftp_stream, string username, string password) - Logs in to an FTP connection. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_mdtm(|)' hint='int ftp_mdtm(resource ftp_stream, string remote_file) - Returns the last modified time of the given file. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>f - ftp_nb_fg' inserttext='ftp_nb_fget(|)' hint='int ftp_nb_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) - Retrieves a file from the FTP server and writes it to an open file (non-blocking). (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_nb_fput(|)' hint='int ftp_nb_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) - Stores a file from an open file to the FTP server (non-blocking). (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_nb_get(|)' hint='int ftp_nb_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) - Retrieves a file from the FTP server and writes it to a local file (non-blocking). (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_nb_put(|)' hint='int ftp_nb_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) - Stores a file on the FTP server (non-blocking). (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_nlist(|)' hint='array ftp_nlist(resource ftp_stream, string directory) - Returns a list of files in the given directory. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_pasv(|)' hint='bool ftp_pasv(resource ftp_stream, bool pasv) - Turns passive mode on or off. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_put(|)' hint='bool ftp_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) - Uploads a file to the FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_pwd(|)' hint='string ftp_pwd(resource ftp_stream) - Returns the current directory name. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_quit(|)' hint='ftp_quit - Alias of ftp_close().' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_raw(|)' hint='array ftp_raw(resource ftp_stream, string command) - Sends an arbitrary command to an FTP server. (PHP 5 CVS only)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_rawlist(|)' hint='array ftp_rawlist(resource ftp_stream, string directory) - Returns a detailed list of files in the given directory. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_rename(|)' hint='bool ftp_rename(resource ftp_stream, string from, string to) - Renames a file on the FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_rmdir(|)' hint='bool ftp_rmdir(resource ftp_stream, string directory) - Removes a directory. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_set_option(|)' hint='bool ftp_set_option(resource ftp_stream, int option, mixed value) - Set miscellaneous runtime FTP options. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_site(|)' hint='bool ftp_site(resource ftp_stream, string cmd) - Sends a SITE command to the server. (PHP 3>=3.0.15, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_size(|)' hint='int ftp_size(resource ftp_stream, string remote_file) - Returns the size of the given file. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_ssl_connect(|)' hint='resource ftp_ssl_connect(string host [, int port [, int timeout]]) - Opens an Secure SSL-FTP connection. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FTP-->>ftp_nb_fp - f' inserttext='ftp_systype(|)' hint='string ftp_systype(resource ftp_stream) - Returns the system type identifier of the remote FTP server. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='disk_free_space(|)' hint='float disk_free_space(string directory) - Returns available space in directory. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='disk_total_space(|)' hint='float disk_total_space(string directory) - Returns the total size of a directory. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='diskfreespace(|)' hint='diskfreespace - Alias of disk_free_space().' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fclose(|)' hint='bool fclose(resource handle) - Closes an open file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='feof(|)' hint='bool feof(resource handle) - Tests for end-of-file on a file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fflush(|)' hint='bool fflush(resource handle) - Flushes the output to a file. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fgetc(|)' hint='string fgetc(resource handle) - Gets character from file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fgetcsv(|)' hint='array fgetcsv(resource handle, int length [, string delimiter [, string enclosure]]) - Gets line from file pointer and parse for CSV fields. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fgets(|)' hint='string fgets(resource handle [, int length]) - Gets line from file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>b - fg' inserttext='fgetss(|)' hint='string fgetss(resource handle, int length [, string allowable_tags]) - Gets line from file pointer and strip HTML tags. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>fi - fp' inserttext='file(|)' hint='array file(string filename [, int use_include_path [, resource context]]) - Reads entire file into an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>fr - li' inserttext='fscanf(|)' hint='mixed fscanf(resource handle, string format [, string var1]) - Parses input from a file according to a format. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>fr - li' inserttext='fseek(|)' hint='int fseek(resource handle, int offset [, int whence]) - Seeks on a file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>fr - li' inserttext='fstat(|)' hint='array fstat(resource handle) - Gets information about a file using an open file pointer. (PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>fr - li' inserttext='ftruncate(|)' hint='bool ftruncate(resource handle, int size) - Truncates a file to a given length. (PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>ls - u' inserttext='touch(|)' hint='bool touch(string filename [, int time [, int atime]]) - Sets access and modification time of file. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Filesystem-->>ls - u' inserttext='umask(|)' hint='int umask([int mask]) - Changes the current umask. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_add_doc_javascript(|)' hint='bool fdf_add_doc_javascript(resource fdfdoc, string script_name, string script_code) - Adds javascript code to the FDF document. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_add_template(|)' hint='bool fdf_add_template(resource fdfdoc, int newpage, string filename, string template, int rename) - Adds a template into the FDF document. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_close(|)' hint='bool fdf_close(resource fdf_document) - Close an FDF document. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_create()' hint='resource fdf_create(void) - Create a new FDF document. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_enum_values(|)' hint='bool fdf_enum_values(resource fdfdoc, callback function [, mixed userdata]) - Call a user defined function for each document value. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_errno()' hint='int fdf_errno(void) - Return error code for last fdf operation. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_ap(|)' hint='bool fdf_get_ap(resource fdf_document, string field, int face, string filename) - Get the appearance of a field. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_attachment(|)' hint='array fdf_get_attachment(resource fdf_document, string fieldname, string savepath) - Extracts uploaded file embedded in the FDF. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_encoding(|)' hint='string fdf_get_encoding(resource fdf_document) - Get the value of the /Encoding key. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_file(|)' hint='string fdf_get_file(resource fdf_document) - Get the value of the /F key. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_flags()' hint='fdf_get_flags(void) - Gets the flags of a field. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_opt(|)' hint='mixed fdf_get_opt(resource fdfdof, string fieldname [, int element]) - Gets a value from the opt array of a field. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_status(|)' hint='string fdf_get_status(resource fdf_document) - Get the value of the /STATUS key. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_value(|)' hint='string fdf_get_value(resource fdf_document, string fieldname [, int which]) - Get the value of a field. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>f - fdf_h' inserttext='fdf_get_version(|)' hint='string fdf_get_version([resource fdf_document]) - Gets version number for FDF API or file. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_next_field_name(|)' hint='string fdf_next_field_name(resource fdf_document [, string fieldname]) - Get the next field name. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_open(|)' hint='resource fdf_open(string filename) - Open a FDF document. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_open_string(|)' hint='resource fdf_open_string(string fdf_data) - Read a FDF document from a string. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_remove_item(|)' hint='bool fdf_remove_item(resource fdfdoc, string fieldname, int item) - Sets target frame for form. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_save(|)' hint='bool fdf_save(resource fdf_document [, string filename]) - Save a FDF document. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_save_string(|)' hint='string fdf_save_string(resource fdf_document) - Returns the FDF document as a string. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_ap(|)' hint='bool fdf_set_ap(resource fdf_document, string field_name, int face, string filename, int page_number) - Set the appearance of a field. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_encoding(|)' hint='bool fdf_set_encoding(resource fdf_document, string encoding) - Sets FDF character encoding. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_file(|)' hint='bool fdf_set_file(resource fdf_document, string url [, string target_frame]) - Set PDF document to display FDF data in. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_flags(|)' hint='bool fdf_set_flags(resource fdf_document, string fieldname, int whichFlags, int newFlags) - Sets a flag of a field. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_javascript_action(|)' hint='bool fdf_set_javascript_action(resource fdf_document, string fieldname, int trigger, string script) - Sets an javascript action of a field. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_opt(|)' hint='bool fdf_set_opt(resource fdf_document, string fieldname, int element, string str1, string str2) - Sets an option of a field. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_status(|)' hint='bool fdf_set_status(resource fdf_document, string status) - Set the value of the /STATUS key. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_submit_form_action(|)' hint='bool fdf_set_submit_form_action(resource fdf_document, string fieldname, int trigger, string script, int flags) - Sets a submit form action of a field. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_target_frame(|)' hint='bool fdf_set_target_frame(resource fdf_document, string frame_name) - Set target frame for form display. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_value(|)' hint='bool fdf_set_value(resource fdf_document, string fieldname, mixed value [, int isName]) - Set the value of a field. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='F' submenu='Forms Data Format-->>fdf_n - f' inserttext='fdf_set_version(|)' hint='string fdf_set_version(resource fdf_document, string version) - Sets version number for a FDF file. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='F' submenu='FriBiDi' inserttext='fribidi_log2vis(|)' hint='string fribidi_log2vis(string str, string direction, int charset) - Convert a logical string to a visual one. (4.0.4-4.3.2 only)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_affected_rows(|)' hint='int fbsql_affected_rows([resource link_identifier]) - Get number of affected rows in previous FrontBase operation. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_data_seek(|)' hint='bool fbsql_data_seek(resource result_identifier, int row_number) - Move internal result pointer. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_database(|)' hint='string fbsql_database(resource link_identifier [, string database]) - Get or set the database name used with a connection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_database_password(|)' hint='string fbsql_database_password(resource link_identifier [, string database_password]) - Sets or retrieves the password for a FrontBase database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_db_status(|)' hint='int fbsql_db_status(string database_name [, resource link_identifier]) - Get the status for a given database. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_errno(|)' hint='int fbsql_errno([resource link_identifier]) - Returns the numerical value of the error message from previous FrontBase operation. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_error(|)' hint='string fbsql_error([resource link_identifier]) - Returns the text of the error message from previous FrontBase operation. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>f - fbsql_fetch_ar' inserttext='fbsql_fetch_array(|)' hint='array fbsql_fetch_array(resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_fetch_assoc(|)' hint='array fbsql_fetch_assoc(resource result) - Fetch a result row as an associative array. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_fetch_field(|)' hint='object fbsql_fetch_field(resource result [, int field_offset]) - Get column information from a result and return as an object. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_fetch_lengths(|)' hint='array fbsql_fetch_lengths([resource result]) - Get the length of each output in a result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_fetch_object(|)' hint='object fbsql_fetch_object(resource result [, int result_type]) - Fetch a result row as an object. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_fetch_row(|)' hint='array fbsql_fetch_row(resource result) - Get a result row as an enumerated array. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_flags(|)' hint='string fbsql_field_flags(resource result, int field_offset) - Get the flags associated with the specified field in a result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_len(|)' hint='int fbsql_field_len(resource result, int field_offset) - Returns the length of the specified field. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_name(|)' hint='string fbsql_field_name(resource result, int field_index) - Get the name of the specified field in a result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_seek(|)' hint='bool fbsql_field_seek(resource result, int field_offset) - Set result pointer to a specified field offset. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_table(|)' hint='string fbsql_field_table(resource result, int field_offset) - Get name of the table the specified field is in. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_field_type(|)' hint='string fbsql_field_type(resource result, int field_offset) - Get the type of the specified field in a result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_get_autostart_info(|)' hint='array fbsql_get_autostart_info([resource link_identifier]) - No description given yet. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_hostname(|)' hint='string fbsql_hostname(resource link_identifier [, string host_name]) - Get or set the host name used with a connection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_insert_id(|)' hint='int fbsql_insert_id([resource link_identifier]) - Get the id generated from the previous INSERT operation. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_list_dbs(|)' hint='resource fbsql_list_dbs([resource link_identifier]) - List databases available on a FrontBase server. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_fetch_as - fbsql_l' inserttext='fbsql_list_tables(|)' hint='resource fbsql_list_tables(string database [, resource link_identifier]) - List tables in a FrontBase database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_next_result(|)' hint='bool fbsql_next_result(resource result_id) - Move the internal result pointer to the next result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_num_fields(|)' hint='int fbsql_num_fields(resource result) - Get number of fields in result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_num_rows(|)' hint='int fbsql_num_rows(resource result) - Get number of rows in result. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_password(|)' hint='string fbsql_password(resource link_identifier [, string password]) - Get or set the user password used with a connection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_pconnect(|)' hint='resource fbsql_pconnect([string hostname [, string username [, string password]]]) - Open a persistent connection to a FrontBase Server. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_query(|)' hint='resource fbsql_query(string query [, resource link_identifier]) - Send a FrontBase query. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_read_blob(|)' hint='string fbsql_read_blob(string blob_handle [, resource link_identifier]) - Read a BLOB from the database. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_read_clob(|)' hint='string fbsql_read_clob(string clob_handle [, resource link_identifier]) - Read a CLOB from the database. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_result(|)' hint='mixed fbsql_result(resource result, int row [, mixed field]) - Get result data. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_rollback(|)' hint='bool fbsql_rollback([resource link_identifier]) - Rollback a transaction to the database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_select_db(|)' hint='bool fbsql_select_db(string database_name [, resource link_identifier]) - Select a FrontBase database. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_set_lob_mode(|)' hint='bool fbsql_set_lob_mode(resource result, string database_name) - Set the LOB retrieve mode for a FrontBase result set. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_set_transaction(|)' hint='void fbsql_set_transaction(resource link_identifier, int Locking, int Isolation) - Set the transaction locking and isolation. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_start_db(|)' hint='bool fbsql_start_db(string database_name [, resource link_identifier]) - Start a database on local or remote server. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_stop_db(|)' hint='bool fbsql_stop_db(string database_name [, resource link_identifier]) - Stop a database on local or remote server. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_tablename(|)' hint='string fbsql_tablename(resource result, int i) - Get table name of field. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_username(|)' hint='string fbsql_username(resource link_identifier [, string username]) - Get or set the host user used with a connection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='FrontBase-->>fbsql_n - f' inserttext='fbsql_warnings(|)' hint='bool fbsql_warnings([bool OnOff]) - Enable or disable FrontBase warnings. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='call_user_func(|)' hint='mixed call_user_func(callback function [, mixed parameter [, mixed ...]]) - Call a user function given by the first parameter. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='call_user_func_array(|)' hint='mixed call_user_func_array(callback function [, array param_arr]) - Call a user function given with an array of parameters. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='func_get_arg(|)' hint='mixed func_get_arg(int arg_num) - Return an item from the argument list. (PHP 4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='func_get_args()' hint="array func_get_args(void) - Returns an array comprising a function's argument list. (PHP 4)" flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='func_num_args()' hint='int func_num_args(void) - Returns the number of arguments passed to the function. (PHP 4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='function_exists(|)' hint='bool function_exists(string function_name) - Return TRUE if the given function has been defined. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='get_defined_functions()' hint='array get_defined_functions(void) - Returns an array of all defined functions. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='register_shutdown_function(|)' hint='void register_shutdown_function(callback function) - Register a function for execution on shutdown. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='register_tick_function(|)' hint='void register_tick_function(callback function [, mixed arg]) - Register a function for execution on each tick. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='F' submenu='Function Handling' inserttext='unregister_tick_function(|)' hint='void unregister_tick_function(string function_name) - De-register a function for execution on each tick. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro(|)' hint='bool filepro(string directory) - Read and verify the map file. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_fieldcount()' hint='int filepro_fieldcount(void) - Find out how many fields are in a filePro database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_fieldname(|)' hint='string filepro_fieldname(int field_number) - Gets the name of a field. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_fieldtype(|)' hint='string filepro_fieldtype(int field_number) - Gets the type of a field. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_fieldwidth(|)' hint='int filepro_fieldwidth(int field_number) - Gets the width of a field. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_retrieve(|)' hint='string filepro_retrieve(int row_number, int field_number) - Retrieves data from a filePro database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='F' submenu='filePro' inserttext='filepro_rowcount()' hint='int filepro_rowcount(void) - Find out how many rows are in a filePro database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_cmp(|)' hint='int gmp_cmp(resource a, resource b) - Compare numbers. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_com(|)' hint="resource gmp_com(resource a) - Calculates one's complement of a. (PHP 4>=4.0.4)" flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_div(|)' hint='gmp_div - Alias of gmp_div_q().' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_div_q(|)' hint='resource gmp_div_q(resource a, resource b [, int round]) - Divide numbers. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_div_qr(|)' hint='array gmp_div_qr(resource n, resource d [, int round]) - Divide numbers and get quotient and remainder. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_div_r(|)' hint='resource gmp_div_r(resource n, resource d [, int round]) - Remainder of the division of numbers. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>g - gmp_l' inserttext='gmp_divexact(|)' hint='resource gmp_divexact(resource n, resource d) - Exact division of numbers. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>gmp_m - g' inserttext='gmp_popcount(|)' hint='int gmp_popcount(resource a) - Population count. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>gmp_m - g' inserttext='gmp_pow(|)' hint='resource gmp_pow(resource base, int exp) - Raise number into power. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>gmp_m - g' inserttext='gmp_powm(|)' hint='resource gmp_powm(resource base, resource exp, resource mod) - Raise number into power with modulo. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GMP-->>gmp_m - g' inserttext='gmp_prob_prime(|)' hint='int gmp_prob_prime(resource a [, int reps]) - Check if number is "probably prime". (PHP 4>=4.0.4)' flags='130'/>
<tag menu='G' submenu='GNU Readline' inserttext='readline_add_history(|)' hint='void readline_add_history(string line) - Adds a line to the history. (PHP 4)' flags='130'/>
<tag menu='G' submenu='GNU Readline' inserttext='readline_clear_history()' hint='bool readline_clear_history(void) - Clears the history. (PHP 4)' flags='130'/>
<tag menu='G' submenu='GNU Recode' inserttext='recode_file(|)' hint='bool recode_file(string request, resource input, resource output) - Recode from file to file according to recode request. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='G' submenu='GNU Recode' inserttext='recode_string(|)' hint='string recode_string(string request, string string) - Recode a string according to a recode request. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='bind_textdomain_codeset(|)' hint='string bind_textdomain_codeset(string domain, string codeset) - Specify the character encoding in which the messages from the DOMAIN message catalog will be returned. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='bindtextdomain(|)' hint='string bindtextdomain(string domain, string directory) - Sets the path for a domain. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='dcgettext(|)' hint='string dcgettext(string domain, string message, int category) - Overrides the domain for a single lookup. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='dcngettext(|)' hint='string dcngettext(string domain, string msgid1, string msgid2, int n, int category) - Plural version of dcgettext. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='dgettext(|)' hint='string dgettext(string domain, string message) - Override the current domain. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='dngettext(|)' hint='string dngettext(string domain, string msgid1, string msgid2, int n) - Plural version of dgettext. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='gettext(|)' hint='string gettext(string message) - Lookup a message in the current domain. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='G' submenu='Gettext' inserttext='ngettext(|)' hint='string ngettext(string msgid1, string msgid2, int n) - Plural version of gettext. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='H' submenu='HTTP' inserttext='header(|)' hint='void header(string string [, bool replace [, int http_response_code]]) - Send a raw HTTP header. (PHP 3, PHP 4)' flags='130'/>
<tag menu='H' submenu='HTTP' inserttext='headers_list()' hint='array headers_list(void) - Returns a list of response headers sent (or ready to send).' flags='130'/>
<tag menu='H' submenu='HTTP' inserttext='headers_sent(|)' hint='bool headers_sent([string &file [, int &line]]) - Checks if or where headers have been sent. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='H' submenu='HTTP' inserttext='setcookie(|)' hint='bool setcookie(string name [, string value [, int expire [, string path [, string domain [, int secure]]]]]) - Send a cookie. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_ignore_add(|)' hint='bool ircg_ignore_add(resource connection, string nick) - Add a user to your ignore list on a server. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_ignore_del(|)' hint='bool ircg_ignore_del(resource connection, string nick) - Remove a user from your ignore list on a server. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_join(|)' hint='bool ircg_join(resource connection, string channel [, string key]) - Join a channel on a connected server. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_kick(|)' hint='bool ircg_kick(resource connection, string channel, string nick, string reason) - Kick a user out of a channel on server. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_lookup_format_messages(|)' hint='bool ircg_lookup_format_messages(string name) - Check for the existence of a format message set. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_msg(|)' hint='bool ircg_msg(resource connection, string recipient, string message [, boolean suppress]) - Send message to channel or user on server. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_nickname_escape(|)' hint='string ircg_nickname_escape(string nick) - Encode special characters in nickname to be IRC-compliant. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_notice(|)' hint='bool ircg_notice(resource connection, string , string message) - Send a notice to a user on server. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_part(|)' hint='bool ircg_part(resource connection, string channel) - Leave a channel on server. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_register_format_messages(|)' hint='bool ircg_register_format_messages(string name, array messages) - Register a format message set. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_set_current(|)' hint='bool ircg_set_current(resource connection) - Set current connection for output. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_set_file(|)' hint='bool ircg_set_file(resource connection, string path) - Set logfile for connection. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_set_on_die(|)' hint='bool ircg_set_on_die(resource connection, string host, int port, string data) - Set action to be executed when connection dies. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_topic(|)' hint='bool ircg_topic(resource connection, string channel, string new_topic) - Set topic for channel on server. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='IRC Gateway' inserttext='ircg_whois(|)' hint='bool ircg_whois(resource connection, string nick) - Query server for user information. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='exif_imagetype(|)' hint='int exif_imagetype(string filename) - Determine the type of an image. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='exif_read_data(|)' hint='array exif_read_data(string filename [, string sections [, bool arrays [, bool thumbnail]]]) - Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='exif_thumbnail(|)' hint='string exif_thumbnail(string filename [, int &width [, int &height [, int &imagetype]]]) - Retrieve the embedded thumbnail of a TIFF or JPEG image. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='gd_info()' hint='array gd_info(void) - Retrieve information about the currently installed GD library. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='getimagesize(|)' hint='array getimagesize(string filename [, array imageinfo]) - Get the size of an image. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='image2wbmp(|)' hint='int image2wbmp(resource image [, string filename [, int threshold]]) - Output image to browser or file. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='image_type_to_mime_type(|)' hint='string image_type_to_mime_type(int imagetype) - Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagealphablending(|)' hint='bool imagealphablending(resource image, bool blendmode) - Set the blending mode for an image. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imageantialias(|)' hint='bool imageantialias(resource im, bool on) - Should antialias functions be used or not. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagearc(|)' hint='int imagearc(resource image, int cx, int cy, int w, int h, int s, int e, int color) - Draw a partial ellipse. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagechar(|)' hint='int imagechar(resource image, int font, int x, int y, string c, int color) - Draw a character horizontally. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecharup(|)' hint='int imagecharup(resource image, int font, int x, int y, string c, int color) - Draw a character vertically. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorallocate(|)' hint='int imagecolorallocate(resource image, int red, int green, int blue) - Allocate a color for an image. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorallocatealpha(|)' hint='int imagecolorallocatealpha(resource image, int red, int green, int blue, int alpha) - Allocate a color for an image. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorat(|)' hint='int imagecolorat(resource image, int x, int y) - Get the index of the color of a pixel. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorclosest(|)' hint='int imagecolorclosest(resource image, int red, int green, int blue) - Get the index of the closest color to the specified color. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorclosestalpha(|)' hint='int imagecolorclosestalpha(resource image, int red, int green, int blue, int alpha) - Get the index of the closest color to the specified color + alpha. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorclosesthwb(|)' hint='int imagecolorclosesthwb(resource image, int red, int green, int blue) - Get the index of the color which has the hue, white and blackness nearest to the given color. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolordeallocate(|)' hint='int imagecolordeallocate(resource image, int color) - De-allocate a color for an image. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>e - imagecolorexact' inserttext='imagecolorexact(|)' hint='int imagecolorexact(resource image, int red, int green, int blue) - Get the index of the specified color. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorexactalpha(|)' hint='int imagecolorexactalpha(resource image, int red, int green, int blue, int alpha) - Get the index of the specified color + alpha. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolormatch(|)' hint='bool imagecolormatch(resource image1, resource image2) - Makes the colors of the palette version of an image more closely match the true color version. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorresolve(|)' hint='int imagecolorresolve(resource image, int red, int green, int blue) - Get the index of the specified color or its closest possible alternative. (PHP 3>=3.0.2, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorresolvealpha(|)' hint='int imagecolorresolvealpha(resource image, int red, int green, int blue, int alpha) - Get the index of the specified color + alpha or its closest possible alternative. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorset(|)' hint='bool imagecolorset(resource image, int index, int red, int green, int blue) - Set the color for the specified palette index. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorsforindex(|)' hint='array imagecolorsforindex(resource image, int index) - Get the colors for an index. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolorstotal(|)' hint="int imagecolorstotal(resource image) - Find out the number of colors in an image's palette. (PHP 3, PHP 4)" flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecolortransparent(|)' hint='int imagecolortransparent(resource image [, int color]) - Define a color as transparent. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecopy(|)' hint='int imagecopy(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) - Copy part of an image. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecopymerge(|)' hint='int imagecopymerge(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) - Copy and merge part of an image. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecopymergegray(|)' hint='int imagecopymergegray(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) - Copy and merge part of an image with gray scale. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecopyresampled(|)' hint='bool imagecopyresampled(resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) - Copy and resize part of an image with resampling. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecopyresized(|)' hint='int imagecopyresized(resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) - Copy and resize part of an image. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreate(|)' hint='resource imagecreate(int x_size, int y_size) - Create a new palette based image. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefromgd(|)' hint='resource imagecreatefromgd(string filename) - Create a new image from GD file or URL. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefromgd2(|)' hint='resource imagecreatefromgd2(string filename) - Create a new image from GD2 file or URL. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefromgd2part(|)' hint='resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height) - Create a new image from a given part of GD2 file or URL. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefromgif(|)' hint='resource imagecreatefromgif(string filename) - Create a new image from file or URL. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefromjpeg(|)' hint='resource imagecreatefromjpeg(string filename) - Create a new image from file or URL. (PHP 3>=3.0.16, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecolorexacta - imagecreatefromp' inserttext='imagecreatefrompng(|)' hint='resource imagecreatefrompng(string filename) - Create a new image from file or URL. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagecreatefromstring(|)' hint='resource imagecreatefromstring(string image) - Create a new image from the image stream in the string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagecreatefromwbmp(|)' hint='resource imagecreatefromwbmp(string filename) - Create a new image from file or URL. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagecreatefromxbm(|)' hint='resource imagecreatefromxbm(string filename) - Create a new image from file or URL. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagecreatefromxpm(|)' hint='resource imagecreatefromxpm(string filename) - Create a new image from file or URL. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagecreatetruecolor(|)' hint='resource imagecreatetruecolor(int x_size, int y_size) - Create a new true color image. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagedashedline(|)' hint='int imagedashedline(resource image, int x1, int y1, int x2, int y2, int color) - Draw a dashed line. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imageellipse(|)' hint='int imageellipse(resource image, int cx, int cy, int w, int h, int color) - Draw an ellipse. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefill(|)' hint='int imagefill(resource image, int x, int y, int color) - Flood fill. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefilledarc(|)' hint='bool imagefilledarc(resource image, int cx, int cy, int w, int h, int s, int e, int color, int style) - Draw a partial ellipse and fill it. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefilledellipse(|)' hint='bool imagefilledellipse(resource image, int cx, int cy, int w, int h, int color) - Draw a filled ellipse. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefilledpolygon(|)' hint='int imagefilledpolygon(resource image, array points, int num_points, int color) - Draw a filled polygon. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefilledrectangle(|)' hint='int imagefilledrectangle(resource image, int x1, int y1, int x2, int y2, int color) - Draw a filled rectangle. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefilltoborder(|)' hint='int imagefilltoborder(resource image, int x, int y, int border, int color) - Flood fill to specific color. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefontheight(|)' hint='int imagefontheight(int font) - Get font height. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefontwidth(|)' hint='int imagefontwidth(int font) - Get font width. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imageftbbox(|)' hint='array imageftbbox(int size, int angle, string font_file, string text [, array extrainfo]) - Give the bounding box of a text using fonts via freetype2. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagefttext(|)' hint='array imagefttext(resource image, int size, int angle, int x, int y, int col, string font_file, string text [, array extrainfo]) - Write text to the image using fonts using FreeType 2. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imagecreatefroms - imagegd' inserttext='imagegammacorrect(|)' hint='int imagegammacorrect(resource image, float inputgamma, float outputgamma) - Apply a gamma correction to a GD image. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imageistruecolor(|)' hint='bool imageistruecolor(resource image) - Finds whether an image is a truecolor image. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagejpeg(|)' hint='int imagejpeg(resource image [, string filename [, int quality]]) - Output image to browser or file. (PHP 3>=3.0.16, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imageline(|)' hint='int imageline(resource image, int x1, int y1, int x2, int y2, int color) - Draw a line. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imageloadfont(|)' hint='int imageloadfont(string file) - Load a new font. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepalettecopy(|)' hint='int imagepalettecopy(resource destination, resource source) - Copy the palette from one image to another. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepng(|)' hint='int imagepng(resource image [, string filename]) - Output a PNG image to either the browser or a file. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepolygon(|)' hint='int imagepolygon(resource image, array points, int num_points, int color) - Draw a polygon. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepsbbox(|)' hint='array imagepsbbox(string text, int font, int size [, int space [, int tightness [, float angle]]]) - Give the bounding box of a text rectangle using PostScript Type1 fonts. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepscopyfont(|)' hint='int imagepscopyfont(int fontindex) - Make a copy of an already loaded font for further modification. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepsencodefont(|)' hint='int imagepsencodefont(int font_index, string encodingfile) - Change the character encoding vector of a font. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagepstext(|)' hint='array imagepstext(resource image, string text, int font, int size, int foreground, int background, int x, int y [, int space [, int tightness [, float angle [, int antialias_steps]]]]) - To draw a text string over an image using PostScript Type1 fonts. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagerectangle(|)' hint='int imagerectangle(resource image, int x1, int y1, int x2, int y2, int col) - Draw a rectangle. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imagegd2 - imager' inserttext='imagerotate(|)' hint='resource imagerotate(resource src_im, float angle, int bgd_color) - Rotate an image with a given angle. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesavealpha(|)' hint='bool imagesavealpha(resource image, bool saveflag) - Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesetbrush(|)' hint='int imagesetbrush(resource image, resource brush) - Set the brush image for line drawing. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesetpixel(|)' hint='int imagesetpixel(resource image, int x, int y, int color) - Set a single pixel. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesetstyle(|)' hint='bool imagesetstyle(resource image, array style) - Set the style for line drawing. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesetthickness(|)' hint='bool imagesetthickness(resource image, int thickness) - Set the thickness for line drawing. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagesettile(|)' hint='int imagesettile(resource image, resource tile) - Set the tile image for filling. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagestring(|)' hint='int imagestring(resource image, int font, int x, int y, string s, int col) - Draw a string horizontally. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagestringup(|)' hint='int imagestringup(resource image, int font, int x, int y, string s, int col) - Draw a string vertically. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagetruecolortopalette(|)' hint='void imagetruecolortopalette(resource image, bool dither, int ncolors) - Convert a true color image to a palette image. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagettfbbox(|)' hint='array imagettfbbox(int size, int angle, string fontfile, string text) - Give the bounding box of a text using TrueType fonts. (PHP 3>=3.0.1, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagettftext(|)' hint='array imagettftext(resource image, int size, int angle, int x, int y, int color, string fontfile, string text) - Write text to the image using TrueType fonts. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagetypes()' hint='int imagetypes(void) - Return the image types supported by this PHP build. (PHP 3 CVS only, PHP 4>=4.0.2)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imagewbmp(|)' hint='int imagewbmp(resource image [, string filename [, int foreground]]) - Output image to browser or file. (PHP 3>=3.0.15, PHP 4>=4.0.1)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imap_8bit(|)' hint='string imap_8bit(string string) - Convert an 8bit string to a quoted-printable string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imap_alerts()' hint='array imap_alerts(void) - This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imap_append(|)' hint='bool imap_append(resource imap_stream, string mbox, string message [, string options]) - Append a string message to a specified mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>images - imap_bi' inserttext='imap_binary(|)' hint='string imap_binary(string string) - Convert an 8bit string to a base64 string. (PHP 3>=3.0.2, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_body(|)' hint='string imap_body(resource imap_stream, int msg_number [, int options]) - Read the message body. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_bodystruct(|)' hint='object imap_bodystruct(resource stream_id, int msg_no, int section) - Read the structure of a specified body section of a specific message. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_delete(|)' hint='bool imap_delete(int imap_stream, int msg_number [, int options]) - Mark a message for deletion from current mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_errors()' hint='array imap_errors(void) - This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_fetch_overview(|)' hint='array imap_fetch_overview(resource imap_stream, string sequence [, int options]) - Read an overview of the information in the headers of the given message. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_fetchbody(|)' hint='string imap_fetchbody(resource imap_stream, int msg_number, string part_number [, flags options]) - Fetch a particular section of the body of the message. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_fetchheader(|)' hint='string imap_fetchheader(resource imap_stream, int msgno, int options) - Returns header for a message. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_fetchstructure(|)' hint='object imap_fetchstructure(resource imap_stream, int msg_number [, int options]) - Read the structure of a particular message. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_get_quota(|)' hint='array imap_get_quota(resource imap_stream, string quota_root) - Retrieve the quota level settings, and usage statics per mailbox. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_getacl(|)' hint='array imap_getacl(resource stream_id, string mailbox) - Gets the ACL for a given mailbox. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_getmailboxes(|)' hint='array imap_getmailboxes(resource imap_stream, string ref, string pattern) - Read the list of mailboxes, returning detailed information on each one. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_getsubscribed(|)' hint='array imap_getsubscribed(resource imap_stream, string ref, string pattern) - List all the subscribed mailboxes. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_bo - imap_header' inserttext='imap_header(|)' hint='imap_header - Alias of imap_headerinfo().' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_headerinfo(|)' hint='object imap_headerinfo(resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]]) - Read the header of the message. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_headers(|)' hint='array imap_headers(resource imap_stream) - Returns headers for all messages in a mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_last_error()' hint='string imap_last_error(void) - This function returns the last IMAP error (if any) that occurred during this page request. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_list(|)' hint='array imap_list(resource imap_stream, string ref, string pattern) - Read the list of mailboxes. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_listmailbox(|)' hint='imap_listmailbox - Alias of imap_list().' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_listscan(|)' hint='array imap_listscan(resource imap_stream, string ref, string pattern, string content) - Read the list of mailboxes, takes a string to search for in the text of the mailbox.' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_listsubscribed(|)' hint='imap_listsubscribed - Alias of imap_lsub().' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_lsub(|)' hint='array imap_lsub(resource imap_stream, string ref, string pattern) - List all the subscribed mailboxes. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_mail_compose(|)' hint='string imap_mail_compose(array envelope, array body) - Create a MIME message based on given envelope and body sections. (PHP 3>=3.0.5, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_mail_copy(|)' hint='bool imap_mail_copy(resource imap_stream, string msglist, string mbox [, int options]) - Copy specified messages to a mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_mail_move(|)' hint='bool imap_mail_move(resource imap_stream, string msglist, string mbox [, int options]) - Move specified messages to a mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_mailboxmsginfo(|)' hint='object imap_mailboxmsginfo(resource imap_stream) - Get information about the current mailbox. (PHP 3>=3.0.2, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_msgno(|)' hint='int imap_msgno(resource imap_stream, int uid) - This function returns the message sequence number for the given UID. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_num_msg(|)' hint='int imap_num_msg(resource imap_stream) - Gives the number of messages in the current mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_num_recent(|)' hint='int imap_num_recent(resource imap_stream) - Gives the number of recent messages in current mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_open(|)' hint='resource imap_open(string mailbox, string username, string password [, int options]) - Open an IMAP stream to a mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_ping(|)' hint='bool imap_ping(resource imap_stream) - Check if the IMAP stream is still active. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_headeri - imap_q' inserttext='imap_qprint(|)' hint='string imap_qprint(string string) - Convert a quoted-printable string to an 8 bit string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_renamemailbox(|)' hint='bool imap_renamemailbox(resource imap_stream, string old_mbox, string new_mbox) - Rename an old mailbox to new mailbox. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_rfc822_parse_headers(|)' hint='object imap_rfc822_parse_headers(string headers [, string defaulthost]) - Parse mail headers from a string. (PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_rfc822_write_address(|)' hint='string imap_rfc822_write_address(string mailbox, string host, string personal) - Returns a properly formatted email address given the mailbox, host, and personal info. (PHP 3>=3.0.2, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_scanmailbox(|)' hint='imap_scanmailbox - Alias of imap_listscan().' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_search(|)' hint='array imap_search(resource imap_stream, string criteria, int options) - This function returns an array of messages matching the given search criteria. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_set_quota(|)' hint='bool imap_set_quota(resource imap_stream, string quota_root, int quota_limit) - Sets a quota for a given mailbox. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_setacl(|)' hint='bool imap_setacl(resource stream_id, string mailbox, string id, string rights) - Sets the ACL for a giving mailbox. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_sort(|)' hint='array imap_sort(resource stream, int criteria, int reverse [, int options [, string search_criteria]]) - Sort an array of message headers. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_status(|)' hint='object imap_status(resource imap_stream, string mailbox, int options) - This function returns status information on a mailbox other than the current one. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_timeout(|)' hint='mixed imap_timeout(int timeout_type [, int timeout]) - Set or fetch imap timeout.' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_uid(|)' hint='int imap_uid(resource imap_stream, int msgno) - This function returns the UID for the given message sequence number. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_undelete(|)' hint='bool imap_undelete(resource imap_stream, int msg_number) - Unmark the message which is marked deleted. (PHP 3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='imap_utf8(|)' hint='string imap_utf8(string mime_encoded_text) - Converts MIME-encoded text to UTF-8. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='iptcembed(|)' hint='array iptcembed(string iptcdata, string jpeg_file_name [, int spool]) - Embed binary IPTC data into a JPEG image. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='iptcparse(|)' hint='array iptcparse(string iptcblock) - Parse a binary IPTC http://www.iptc.org/ block into single tags. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='jpeg2wbmp(|)' hint='int jpeg2wbmp(string jpegname, string wbmpname, int d_height, int d_width, int threshold) - Convert JPEG image file to WBMP image file. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='png2wbmp(|)' hint='int png2wbmp(string pngname, string wbmpname, int d_height, int d_width, int threshold) - Convert PNG image file to WBMP image file. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='Image-->>imap_r - r' inserttext='read_exif_data(|)' hint='read_exif_data - Convert an 8bit string to a quoted-printable string imap_alerts -- This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset imap_append -- Append a string message to a specified mailbox imap_base64 -- Decode BASE64 encoded textimap_binary -- Convert an 8bit string to a base64 string imap_body -- Read the message bodyimap_bodystruct -- Read the structure of a specified body section of a specific message imap_check -- Check current mailboximap_clearflag_full -- Clears flags on messagesimap_close -- Close an IMAP streamimap_createmailbox -- Create a new mailboximap_delete -- Mark a message for deletion from current mailbox imap_deletemailbox -- Delete a mailboximap_errors -- This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset. imap_expunge -- Delete all messages marked for deletionimap_fetch_overview -- Read an overview of the information in the headers of the given message imap_fetchbody -- Fetch a particular section of the body of the message imap_fetchheader -- Returns header for a messageimap_fetchstructure -- Read the structure of a particular message imap_get_quota -- Retrieve the quota level settings, and usage statics per mailbox imap_get_quotaroot -- Retrieve the quota settings per user imap_getacl -- Gets the ACL for a given mailbox imap_getmailboxes -- Read the list of mailboxes, returning detailed information on each one imap_getsubscribed -- List all the subscribed mailboxesimap_header -- Alias of imap_headerinfo()imap_headerinfo -- Read the header of the messageimap_headers -- Returns headers for all messages in a mailbox imap_last_error -- This function returns the last IMAP error (if any) that occurred during this page request imap_list -- Read the list of mailboxesimap_listmailbox -- Alias of imap_list()imap_listscan -- Read the list of mailboxes, takes a string to search for in the text of the mailbox imap_listsubscribed -- Alias of imap_lsub()imap_lsub -- List all the subscribed mailboxesimap_mail_compose -- Create a MIME message based on given envelope and body sections imap_mail_copy -- Copy specified messages to a mailboximap_mail_move -- Move specified messages to a mailboximap_mail -- Send an email message imap_mailboxmsginfo -- Get information about the current mailboximap_mime_header_decode -- Decode MIME header elementsimap_msgno -- This function returns the message sequence number for the given UID imap_num_msg -- Gives the number of messages in the current mailbox imap_num_recent -- Gives the number of recent messages in current mailboximap_open -- Open an IMAP stream to a mailboximap_ping -- Check if the IMAP stream is still activeimap_qprint -- Convert a quoted-printable string to an 8 bit stringimap_renamemailbox -- Rename an old mailbox to new mailboximap_reopen -- Reopen IMAP stream to new mailboximap_rfc822_parse_adrlist -- Parses an address stringimap_rfc822_parse_headers -- Parse mail headers from a stringimap_rfc822_write_address -- Returns a properly formatted email address given the mailbox, host, and personal info. imap_scanmailbox -- Alias of imap_listscan()imap_search -- This function returns an array of messages matching the given search criteria imap_set_quota -- Sets a quota for a given mailboximap_setacl -- Sets the ACL for a giving mailbox imap_setflag_full -- Sets flags on messagesimap_sort -- Sort an array of message headersimap_status -- This function returns status information on a mailbox other than the current one imap_subscribe -- Subscribe to a mailboximap_thread -- Return threaded by REFERENCES tree imap_timeout -- Set or fetch imap timeout imap_uid -- This function returns the UID for the given message sequence number imap_undelete -- Unmark the message which is marked deleted imap_unsubscribe -- Unsubscribe from a mailboximap_utf7_decode -- Decodes a modified UTF-7 encoded string. imap_utf7_encode -- Converts ISO-8859-1 string to modified UTF-7 text. imap_utf8 -- Converts MIME-encoded text to UTF-8 .' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_affected_rows(|)' hint='mixed mysqli_affected_rows(object link) - Gets the number of affected rows in a previous MySQL operation. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_autocommit(|)' hint='bool mysqli_autocommit(object link, bool mode) - Turns on or off auto-committing database modifications. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_bind_param(|)' hint='bool mysqli_bind_param(object stmt, array types, mixed var1 [, mixed var2, ...]) - Binds variables to a prepared statement as parameters. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_bind_result(|)' hint='bool mysqli_bind_result(resource stmt, mixed var, int len) - Binds variables to a prepared statement for result storage. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_change_user(|)' hint='bool mysqli_change_user(resource link, string user, string password, string database) - Changes the user of the specified database connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_character_set_name(|)' hint='string mysqli_character_set_name(resource link) - Returns the default character set for the database connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_close(|)' hint='bool mysqli_close(resource link) - Closes a previously opened database connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_commit(|)' hint='bool mysqli_commit(resource link) - Commits the current transaction. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_connect(|)' hint='resource mysqli_connect([string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) - Open a new connection to the MySQL server. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_data_seek(|)' hint='void mysqli_data_seek(resource result, int offset) - Adjusts the result pointer to an arbitrary row in the result. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_errno(|)' hint='int mysqli_errno(resource link) - Returns the error code for the most recent function call. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>m - mysqli_e' inserttext='mysqli_error(|)' hint='string mysqli_error(resource link) - Returns a string description of the last error. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch(|)' hint='int mysqli_fetch(resource stmt) - Fetch results from a prepared statement into the bound variables. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_array(|)' hint='array mysqli_fetch_array(resource result [, int resulttype]) - Fetch a result row as an associative, a numeric array, or both. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_assoc(|)' hint='array mysqli_fetch_assoc(resource result) - Fetch a result row as an associative array. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_field(|)' hint='object mysqli_fetch_field(resource result) - Returns the next field in the result set. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_field_direct(|)' hint='int mysqli_fetch_field_direct(resource result, int offset) - Fetch meta-data for a single field. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_fields(|)' hint='array mysqli_fetch_fields(resource result) - Returns an array of objects representing the fields in a result set. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_lengths(|)' hint='array mysqli_fetch_lengths(resource result) - Returns the lengths of the columns of the current row in the result set. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_object(|)' hint='object mysqli_fetch_object(resource result) - Returns the current row of a result set as an object. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_fetch_row(|)' hint='array mysqli_fetch_row(resource result) - Get a result row as an enumerated array. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_field_count(|)' hint='int mysqli_field_count(resource link) - Returns the number of columns for the most recent query. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_field_seek(|)' hint='int mysqli_field_seek(resource link, int fieldnr) - Set result pointer to a specified field offset. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_field_tell(|)' hint='int mysqli_field_tell(resource result) - Get current field offset of a result pointer. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_free_result(|)' hint='int mysqli_free_result(resource result) - Frees the memory associated with a result. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_get_client_info()' hint='string mysqli_get_client_info(void) - Returns the MySQL client version as a string. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_get_host_info(|)' hint='string mysqli_get_host_info(resource link) - Returns a string representing the type of connection used. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_get_proto_info(|)' hint='int mysqli_get_proto_info(resource link) - Returns the version of the MySQL protocol used. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_get_server_info(|)' hint='string mysqli_get_server_info(resource link) - Returns the version of the MySQL server. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_get_server_version(|)' hint='int mysqli_get_server_version(resource link) - Returns the version of the MySQL server as an integer. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_f - mysqli_inf' inserttext='mysqli_info(|)' hint='string mysqli_info(resource link) - Retrieves information about the most recently executed query. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_init()' hint='resource mysqli_init(void) - Initializes MySQLi and returns a resource for use with mysqli_real_connect. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_insert_id(|)' hint='mixed mysqli_insert_id(resource link) - Returns the auto generated id used in the last query. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_kill(|)' hint='bool mysqli_kill(resource link, int processid) - Asks the server to kill a MySQL thread. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_master_query(|)' hint='bool mysqli_master_query(resource link, string query) - Enforce execution of a query on the master in a master/slave setup. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_num_fields(|)' hint='int mysqli_num_fields(resource result) - Get the number of fields in a result. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_num_rows(|)' hint='int mysqli_num_rows(resource result) - Gets the number of rows in a result. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_options(|)' hint='bool mysqli_options(resource link, int flags, mixed values) - Set options. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_param_count(|)' hint='int mysqli_param_count(resource stmt) - Returns the number of parameter for the given statement. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_ping(|)' hint='int mysqli_ping(resource link) - Ping a server connection, or reconnect if there is no connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_prepare(|)' hint='resource mysqli_prepare(resource link, string query) - Prepare a SQL statement for execution. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_real_connect(|)' hint='bool mysqli_real_connect(resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) - Opens a connection to a mysql server. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_ini - mysqli_ro' inserttext='mysqli_real_escape_string(|)' hint='string mysqli_real_escape_string(resource link, string escapestr) - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_slave_query(|)' hint='bool mysqli_slave_query(resource link, string query) - Enforces execution of a query on a slave in a master/slave setup. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_store_result(|)' hint='resource mysqli_store_result(resource link) - Transfers a result set from the last query. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_thread_id(|)' hint='int mysqli_thread_id(resource link) - Returns the thread ID for the current connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_thread_safe()' hint='bool mysqli_thread_safe(void) - Returns whether thread safety is given or not. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_use_result(|)' hint='resource mysqli_use_result(resource link) - Initiate a result set retrieval. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Improved MySQL Extension-->>mysqli_rp - m' inserttext='mysqli_warning_count(|)' hint='resource mysqli_warning_count(resource link) - Returns the number of warnings from the last query for the given link. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_affected_rows(|)' hint='int ifx_affected_rows(int result_id) - Get number of rows affected by a query. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_blobinfile_mode(|)' hint='void ifx_blobinfile_mode(int mode) - Set the default blob mode for all select queries. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_byteasvarchar(|)' hint='void ifx_byteasvarchar(int mode) - Set the default byte mode. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_free_result(|)' hint='int ifx_free_result(int result_id) - Releases resources for the query. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_get_blob(|)' hint='int ifx_get_blob(int bid) - Return the content of a blob object. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>i - ifx_get_' inserttext='ifx_get_char(|)' hint='int ifx_get_char(int bid) - Return the content of the char object. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifx_getsqlca(|)' hint='array ifx_getsqlca(int result_id) - Get the contents of sqlca.sqlerrd[0..5] after a query. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifx_htmltbl_result(|)' hint='int ifx_htmltbl_result(int result_id [, string html_table_options]) - Formats all rows of a query into a HTML table. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifx_nullformat(|)' hint='void ifx_nullformat(int mode) - Sets the default return value on a fetch row. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifx_num_fields(|)' hint='int ifx_num_fields(int result_id) - Returns the number of columns in the query. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifx_num_rows(|)' hint='int ifx_num_rows(int result_id) - Count the rows already fetched from a query. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifxus_read_slob(|)' hint='int ifxus_read_slob(long bid, long nbytes) - Reads nbytes of the slob object. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifxus_seek_slob(|)' hint='int ifxus_seek_slob(long bid, int mode, long offset) - Sets the current file or seek position. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifxus_tell_slob(|)' hint='int ifxus_tell_slob(long bid) - Returns the current file or seek position. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='Informix-->>ifx_gets - i' inserttext='ifxus_write_slob(|)' hint='int ifxus_write_slob(long bid, string content) - Writes a string into the slob object. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_add_user(|)' hint='bool ibase_add_user(string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) - Add a user to a security database (only for IB6 or later). (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_affected_rows(|)' hint='int ibase_affected_rows(resource link_identifier) - Return the number of rows that were affected by the previous query.' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_blob_add(|)' hint='bool ibase_blob_add(resource blob_handle, string data) - Add data into a newly created blob. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_blob_get(|)' hint='string ibase_blob_get(resource blob_handle, int len) - Get len bytes data from open blob. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_blob_import(|)' hint='string ibase_blob_import([resource link_identifier, resource file_handle]) - Create blob, copy file in it, and close it. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>i - ibase_fetch_a' inserttext='ibase_fetch_assoc(|)' hint='array ibase_fetch_assoc(resource result [, int fetch_flag]) - Fetch a result row from a query as an associative array. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_fetch_object(|)' hint='object ibase_fetch_object(resource result_id [, int fetch_flag]) - Get an object from a InterBase database. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_fetch_row(|)' hint='array ibase_fetch_row(resource result_identifier [, int fetch_flag]) - Fetch a row from an InterBase database. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_field_info(|)' hint='array ibase_field_info(resource result, int field_number) - Get information about a field. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_free_result(|)' hint='bool ibase_free_result(resource result_identifier) - Free a result set. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_gen_id(|)' hint='int ibase_gen_id([resource link_identifier [, string generator [, int increment]]]) - Increments the named generator and returns its new value.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_modify_user(|)' hint='bool ibase_modify_user(string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) - Modify a user to a security database (only for IB6 or later). (PHP 4>=4.2.0)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_name_result(|)' hint='bool ibase_name_result(resource result, string name) - Assigns a name to a result set.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_num_fields(|)' hint='int ibase_num_fields(resource result_id) - Get the number of fields in a result set. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_num_params(|)' hint='int ibase_num_params(resource query) - Return the number of parameters in a prepared query.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_param_info(|)' hint='array ibase_param_info(resource query, int param_number) - Return information about a parameter in a prepared query.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_pconnect(|)' hint='resource ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) - Open a persistent connection to an InterBase database. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_prepare(|)' hint='resource ibase_prepare([resource link_identifier, string query]) - Prepare a query for later binding of parameter placeholders and execution. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_query(|)' hint='resource ibase_query([resource link_identifier, string query [, int bind_args]]) - Execute a query on an InterBase database. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_rollback(|)' hint='bool ibase_rollback([resource link_identifier]) - Roll back a transaction. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_rollback_ret(|)' hint='bool ibase_rollback_ret([resource link_identifier]) - Roll back a transaction without closing it.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_set_event_handler(|)' hint='resource ibase_set_event_handler([resource connection, callback event_handler, string event_name1 [, string event_name2 [, string ...]]]) - Register a callback function to be called when events are posted.' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_timefmt(|)' hint='int ibase_timefmt(string format [, int columntype]) - Sets the format of timestamp, date and time type columns returned from queries. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='I' submenu='InterBase-->>ibase_fetch_o - i' inserttext='ibase_wait_event(|)' hint='string ibase_wait_event([resource connection, string event_name1 [, string event_name2 [, string ...]]]) - Wait for an event to be posted by the database.' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='iconv_set_encoding(|)' hint='bool iconv_set_encoding(string type, string charset) - Set current setting for character encoding conversion. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='iconv_strlen(|)' hint='int iconv_strlen(string str [, string charset]) - Returns the character count of string. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='iconv_strpos(|)' hint='int iconv_strpos(string haystack, string needle, int offset [, string charset]) - Finds position of first occurrence of a needle within a haystack. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='iconv_strrpos(|)' hint='string iconv_strrpos(string haystack, string needle [, string charset]) - Finds the last occurrence of a needle within the specified range of haystack. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='iconv_substr(|)' hint='string iconv_substr(string str, int offset [, int length [, string charset]]) - Cut out part of a string. (PHP 5 CVS only)' flags='130'/>
<tag menu='I' submenu='iconv' inserttext='ob_iconv_handler(|)' hint='array ob_iconv_handler(string contents, int status) - Convert character encoding as output buffer handler. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_close(|)' hint='bool ldap_close(resource link_identifier) - Close link to LDAP server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_compare(|)' hint='bool ldap_compare(resource link_identifier, string dn, string attribute, string value) - Compare value of attribute found in entry specified with DN. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_connect(|)' hint='resource ldap_connect([string hostname [, int port]]) - Connect to an LDAP server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_count_entries(|)' hint='int ldap_count_entries(resource link_identifier, resource result_identifier) - Count the number of entries in a search. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_delete(|)' hint='bool ldap_delete(resource link_identifier, string dn) - Delete an entry from a directory. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_errno(|)' hint='int ldap_errno(resource link_identifier) - Return the LDAP error number of the last LDAP command. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_error(|)' hint='string ldap_error(resource link_identifier) - Return the LDAP error message of the last LDAP command. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_explode_dn(|)' hint='array ldap_explode_dn(string dn, int with_attrib) - Splits DN into its component parts. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_get_attributes(|)' hint='array ldap_get_attributes(resource link_identifier, resource result_entry_identifier) - Get attributes from a search result entry. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_get_dn(|)' hint='string ldap_get_dn(resource link_identifier, resource result_entry_identifier) - Get the DN of a result entry. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_get_entries(|)' hint='array ldap_get_entries(resource link_identifier, resource result_identifier) - Get all result entries. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>l - ldap_get_o' inserttext='ldap_get_option(|)' hint='bool ldap_get_option(resource link_identifier, int option, mixed retval) - Get the current value for given option. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_get_values(|)' hint='array ldap_get_values(resource link_identifier, resource result_entry_identifier, string attribute) - Get all values from a result entry. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_get_values_len(|)' hint='array ldap_get_values_len(resource link_identifier, resource result_entry_identifier, string attribute) - Get all binary values from a result entry. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_list(|)' hint='resource ldap_list(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Single-level search. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_mod_add(|)' hint='bool ldap_mod_add(resource link_identifier, string dn, array entry) - Add attribute values to current attributes. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_mod_del(|)' hint='bool ldap_mod_del(resource link_identifier, string dn, array entry) - Delete attribute values from current attributes. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_mod_replace(|)' hint='bool ldap_mod_replace(resource link_identifier, string dn, array entry) - Replace attribute values with new ones. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_next_attribute(|)' hint='string ldap_next_attribute(resource link_identifier, resource result_entry_identifier, resource ber_identifier) - Get the next attribute in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_next_entry(|)' hint='resource ldap_next_entry(resource link_identifier, resource result_entry_identifier) - Get next result entry. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_next_reference(|)' hint='resource ldap_next_reference(resource link, resource entry) - Get next reference. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_parse_reference(|)' hint='bool ldap_parse_reference(resource link, resource entry, array referrals) - Extract information from reference entry. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_parse_result(|)' hint='bool ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals) - Extract information from result. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_read(|)' hint='resource ldap_read(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Read an entry. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_rename(|)' hint='bool ldap_rename(resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn) - Modify the name of an entry. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_search(|)' hint='resource ldap_search(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Search LDAP tree. (PHP 3, PHP 4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_set_option(|)' hint='bool ldap_set_option(resource link_identifier, int option, mixed newval) - Set the value of the given option. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='L' submenu='LDAP-->>ldap_get_v - l' inserttext='ldap_set_rebind_proc(|)' hint='bool ldap_set_rebind_proc(resource link, string callback) - Set a callback function to do re-binds on referral chasing. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='L' submenu='LZF' inserttext='lzf_optimized_for()' hint='int lzf_optimized_for(void) - Determines what LZF extension was optimized for.' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_body(|)' hint='array notes_body(string server, string mailbox, int msg_number) - Open the message msg_number in the specified mailbox on the specified server (leave serv. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_copy_db(|)' hint='string notes_copy_db(string from_database_name, string to_database_name) - Create a note using form form_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_create_note(|)' hint='string notes_create_note(string database_name, string form_name) - Create a note using form form_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_drop_db(|)' hint='bool notes_drop_db(string database_name) - Drop a Lotus Notes database. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_find_note(|)' hint='bool notes_find_note(string database_name, string name [, string type]) - Returns a note id found in database_name. Specify the name of the note. Leaving type bla. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_header_info(|)' hint='object notes_header_info(string server, string mailbox, int msg_number) - Open the message msg_number in the specified mailbox on the specified server (leave serv. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_list_msgs(|)' hint='bool notes_list_msgs(string db) - Returns the notes from a selected database_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_mark_read(|)' hint='string notes_mark_read(string database_name, string user_name, string note_id) - Mark a note_id as read for the User user_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_mark_unread(|)' hint='string notes_mark_unread(string database_name, string user_name, string note_id) - Mark a note_id as unread for the User user_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_nav_create(|)' hint='bool notes_nav_create(string database_name, string name) - Create a navigator name, in database_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_search(|)' hint='string notes_search(string database_name, string keywords) - Find notes that match keywords in database_name. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_unread(|)' hint="string notes_unread(string database_name, string user_name) - Returns the unread note id's for the current User user_name. (PHP 4>=4.0.5)" flags='130'/>
<tag menu='L' submenu='Lotus Notes' inserttext='notes_version(|)' hint='string notes_version(string database_name) - Get the version Lotus Notes. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_append_event(|)' hint='int mcal_append_event(int mcal_stream) - Store a new event into an MCAL calendar. (PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_close(|)' hint='int mcal_close(int mcal_stream, int flags) - Close an MCAL stream. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_date_compare(|)' hint='int mcal_date_compare(int a_year, int a_month, int a_day, int b_year, int b_month, int b_day) - Compares two dates. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_date_valid(|)' hint='int mcal_date_valid(int year, int month, int day) - Returns TRUE if the given year, month, day is a valid date. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_day_of_week(|)' hint='int mcal_day_of_week(int year, int month, int day) - Returns the day of the week of the given date. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_day_of_year(|)' hint='int mcal_day_of_year(int year, int month, int day) - Returns the day of the year of the given date. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_days_in_month(|)' hint='int mcal_days_in_month(int month, int leap_year) - Returns the number of days in a month. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_delete_event(|)' hint='int mcal_delete_event(int mcal_stream [, int event_id]) - Delete an event from an MCAL calendar. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_add_attribute(|)' hint='void mcal_event_add_attribute(int stream, string attribute, string value) - Adds an attribute and a value to the streams global event structure. (PHP 3>=3.0.15, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_alarm(|)' hint='int mcal_event_set_alarm(int stream, int alarm) - Sets the alarm of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_category(|)' hint='int mcal_event_set_category(int stream, string category) - Sets the category of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_class(|)' hint='int mcal_event_set_class(int stream, int class) - Sets the class of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_description(|)' hint='int mcal_event_set_description(int stream, string description) - Sets the description of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_end(|)' hint='int mcal_event_set_end(int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]]) - Sets the end date and time of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_recur_daily(|)' hint='int mcal_event_set_recur_daily(int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_recur_monthly_mday(|)' hint='int mcal_event_set_recur_monthly_mday(int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>m - mcal_event_set_recur_m' inserttext='mcal_event_set_recur_monthly_wday(|)' hint='int mcal_event_set_recur_monthly_wday(int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_event_set_recur_none(|)' hint='int mcal_event_set_recur_none(int stream) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.15, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_event_set_recur_weekly(|)' hint='int mcal_event_set_recur_weekly(int stream, int year, int month, int day, int interval, int weekdays) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_event_set_recur_yearly(|)' hint='int mcal_event_set_recur_yearly(int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_event_set_start(|)' hint='int mcal_event_set_start(int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]]) - Sets the start date and time of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_event_set_title(|)' hint='int mcal_event_set_title(int stream, string title) - Sets the title of the streams global event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_expunge(|)' hint='int mcal_expunge(int stream) - Deletes all events marked for being expunged.' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_fetch_current_stream_event(|)' hint='object mcal_fetch_current_stream_event(int stream) - Returns an object containing the current streams event structure. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_fetch_event(|)' hint='object mcal_fetch_event(int mcal_stream, int event_id [, int options]) - Fetches an event from the calendar stream. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_is_leap_year(|)' hint='int mcal_is_leap_year(int year) - Returns if the given year is a leap year or not. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_list_alarms(|)' hint='array mcal_list_alarms(int mcal_stream [, int begin_year [, int begin_month [, int begin_day [, int end_year [, int end_month [, int end_day]]]]]]) - Return a list of events that has an alarm triggered at the given datetime. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_list_events(|)' hint='array mcal_list_events(int mcal_stream, object begin_date [, object end_date]) - Return a list of IDs for a date or a range of dates. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_next_recurrence(|)' hint='int mcal_next_recurrence(int stream, int weekstart, array next) - Returns the next recurrence of the event. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_open(|)' hint='int mcal_open(string calendar, string username, string password [, int options]) - Opens up an MCAL connection. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_popen(|)' hint='int mcal_popen(string calendar, string username, string password [, int options]) - Opens up a persistent MCAL connection. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_snooze(|)' hint='bool mcal_snooze(int stream_id, int event_id) - Turn off an alarm for an event. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_store_event(|)' hint='int mcal_store_event(int mcal_stream) - Modify an existing event in an MCAL calendar. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_time_valid(|)' hint='int mcal_time_valid(int hour, int minutes, int seconds) - Returns TRUE if the given year, month, day is a valid time. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='M' submenu='MCAL-->>mcal_event_set_recur_n - m' inserttext='mcal_week_of_year(|)' hint='int mcal_week_of_year(int day, int month, int year) - Returns the week number of the given date. (PHP 4)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_adduser(|)' hint='int mcve_adduser(resource conn, string admin_password, int usersetup) - Add an MCVE user using usersetup structure. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_adduserarg(|)' hint='int mcve_adduserarg(resource usersetup, int argtype, string argval) - Add a value to user configuration structure. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_checkstatus(|)' hint='int mcve_checkstatus(resource conn, int identifier) - Check to see if a transaction has completed. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_completeauthorizations(|)' hint='int mcve_completeauthorizations(resource conn, int &array) - Number of complete authorizations in queue, returning an array of their identifiers. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_connect(|)' hint='int mcve_connect(resource conn) - Establish the connection to MCVE. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_connectionerror(|)' hint='string mcve_connectionerror(resource conn) - Get a textual representation of why a connection failed. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>m - mcve_f' inserttext='mcve_force(|)' hint='int mcve_force(resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum) - Send a FORCE to MCVE. (typically, a phone-authorization). (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getcell(|)' hint='string mcve_getcell(resource conn, int identifier, string column, int row) - Get a specific cell from a comma delimited response by column name. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getcellbynum(|)' hint='string mcve_getcellbynum(resource conn, int identifier, int column, int row) - Get a specific cell from a comma delimited response by column number. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getcommadelimited(|)' hint='string mcve_getcommadelimited(resource conn, int identifier) - Get the RAW comma delimited data returned from MCVE. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getheader(|)' hint='string mcve_getheader(resource conn, int identifier, int column_num) - Get the name of the column in a comma-delimited response. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getuserarg(|)' hint='string mcve_getuserarg(resource usersetup, int argtype) - Grab a value from usersetup structure. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_getuserparam(|)' hint='string mcve_getuserparam(resource conn, long identifier, int key) - Get a user response parameter. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_initconn()' hint='resource mcve_initconn(void) - Create and initialize an MCVE_CONN structure. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_initengine(|)' hint='int mcve_initengine(string location) - Ready the client for IP/SSL Communication. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_initusersetup()' hint='resource mcve_initusersetup(void) - Initialize structure to store user data. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_iscommadelimited(|)' hint='int mcve_iscommadelimited(resource conn, int identifier) - Checks to see if response is comma delimited. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_liststats(|)' hint='int mcve_liststats(resource conn, string admin_password) - List statistics for all users on MCVE system. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_listusers(|)' hint='int mcve_listusers(resource conn, string admin_password) - List all users on MCVE system. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_maxconntimeout(|)' hint='bool mcve_maxconntimeout(resource conn, int secs) - The maximum amount of time the API will attempt a connection to MCVE. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_numcolumns(|)' hint='int mcve_numcolumns(resource conn, int identifier) - Number of columns returned in a comma delimited response. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_g - mcve_n' inserttext='mcve_numrows(|)' hint='int mcve_numrows(resource conn, int identifier) - Number of rows returned in a comma delimited response. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_returncode(|)' hint='int mcve_returncode(resource conn, int identifier) - Grab the exact return code from the transaction. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_returnstatus(|)' hint='int mcve_returnstatus(resource conn, int identifier) - Check to see if the transaction was successful. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_setblocking(|)' hint='int mcve_setblocking(resource conn, int tf) - Set blocking/non-blocking mode for connection. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_setdropfile(|)' hint='int mcve_setdropfile(resource conn, string directory) - Set the connection method to Drop-File. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_setip(|)' hint='int mcve_setip(resource conn, string host, int port) - Set the connection method to IP. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_setssl(|)' hint='int mcve_setssl(resource conn, string host, int port) - Set the connection method to SSL. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_setssl_files(|)' hint='int mcve_setssl_files(string sslkeyfile, string sslcertfile) - Set certificate key files and certificates if server requires client certificate verification.' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_settimeout(|)' hint='int mcve_settimeout(resource conn, int seconds) - Set maximum transaction time (per trans). (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_settle(|)' hint='int mcve_settle(resource conn, string username, string password, string batch) - Issue a settlement command to do a batch deposit. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_o - mcve_text_a' inserttext='mcve_text_avs(|)' hint='string mcve_text_avs(string code) - Get a textual representation of the return_avs. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_text_code(|)' hint='string mcve_text_code(string code) - Get a textual representation of the return_code. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_text_cv(|)' hint='string mcve_text_cv(int code) - Get a textual representation of the return_cv. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionauth(|)' hint='string mcve_transactionauth(resource conn, int identifier) - Get the authorization number returned for the transaction (alpha-numeric). (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionavs(|)' hint='int mcve_transactionavs(resource conn, int identifier) - Get the Address Verification return status. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionbatch(|)' hint='int mcve_transactionbatch(resource conn, int identifier) - Get the batch number associated with the transaction. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactioncv(|)' hint='int mcve_transactioncv(resource conn, int identifier) - Get the CVC2/CVV2/CID return status. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionid(|)' hint='int mcve_transactionid(resource conn, int identifier) - Get the unique system id for the transaction. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionitem(|)' hint='int mcve_transactionitem(resource conn, int identifier) - Get the ITEM number in the associated batch for this transaction. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactionssent(|)' hint='int mcve_transactionssent(resource conn) - Check to see if outgoing buffer is clear. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transactiontext(|)' hint='string mcve_transactiontext(resource conn, int identifier) - Get verbiage (text) return from MCVE or processing institution. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transinqueue(|)' hint='int mcve_transinqueue(resource conn) - Number of transactions in client-queue. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transnew(|)' hint='int mcve_transnew(resource conn) - Start a new transaction. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transparam(|)' hint='int mcve_transparam(resource conn, long identifier, int key) - Add a parameter to a transaction. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_transsend(|)' hint='int mcve_transsend(resource conn, long identifier) - Finalize and send the transaction. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_ub(|)' hint='int mcve_ub(resource conn, string username, string password) - Get a list of all Unsettled batches. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_verifyconnection(|)' hint='bool mcve_verifyconnection(resource conn, int tf) - Set whether or not to PING upon connect to verify connection. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_verifysslcert(|)' hint='bool mcve_verifysslcert(resource conn, int tf) - Set whether or not to verify the server ssl certificate. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MCVE Payment-->>mcve_text_c - m' inserttext='mcve_void(|)' hint='int mcve_void(resource conn, string username, string password, int sid, int ptrannum) - VOID a transaction in the settlement queue. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Mail' inserttext='ezmlm_hash(|)' hint='int ezmlm_hash(string addr) - Calculate the hash value needed by EZMLM. (PHP 3>=3.0.17, PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='base_convert(|)' hint='string base_convert(string number, int frombase, int tobase) - Convert a number between arbitrary bases. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='deg2rad(|)' hint='float deg2rad(float number) - Converts the number in degrees to the radian equivalent. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='exp(|)' hint='float exp(float arg) - Calculates the exponent of e (the Neperian or Natural logarithm base). (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='expm1(|)' hint='float expm1(float number) - Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='fmod(|)' hint='float fmod(float x, float y) - Returns the floating point remainder (modulo) of the division of the arguments. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>a - h' inserttext='getrandmax()' hint='int getrandmax(void) - Show largest possible random value. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='is_finite(|)' hint='bool is_finite(float val) - Finds whether a value is a legal finite number. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='is_infinite(|)' hint='bool is_infinite(float val) - Finds whether a value is infinite. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='is_nan(|)' hint='bool is_nan(float val) - Finds whether a value is not a number. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='log1p(|)' hint='float log1p(float number) - Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='mt_getrandmax()' hint='int mt_getrandmax(void) - Show largest possible random value. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='mt_rand(|)' hint='int mt_rand([int min, int max]) - Generate a better random value. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='mt_srand(|)' hint='void mt_srand([int seed]) - Seed the better random number generator. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='rad2deg(|)' hint='float rad2deg(float number) - Converts the radian number to the equivalent number in degrees. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='rand(|)' hint='int rand([int min, int max]) - Generate a random value. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mathematical-->>i - t' inserttext='round(|)' hint='float round(float val [, int precision]) - Rounds a float. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_ecb(|)' hint='string mcrypt_ecb(int cipher, string key, string data, int mode) - Encrypt/decrypt data in ECB mode. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_algorithms_name(|)' hint='string mcrypt_enc_get_algorithms_name(resource td) - Returns the name of the opened algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_block_size(|)' hint='int mcrypt_enc_get_block_size(resource td) - Returns the blocksize of the opened algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_iv_size(|)' hint='int mcrypt_enc_get_iv_size(resource td) - Returns the size of the IV of the opened algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_key_size(|)' hint='int mcrypt_enc_get_key_size(resource td) - Returns the maximum supported keysize of the opened mode. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_modes_name(|)' hint='string mcrypt_enc_get_modes_name(resource td) - Returns the name of the opened mode. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_get_supported_key_sizes(|)' hint='array mcrypt_enc_get_supported_key_sizes(resource td) - Returns an array with the supported keysizes of the opened algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_is_block_algorithm(|)' hint='bool mcrypt_enc_is_block_algorithm(resource td) - Checks whether the algorithm of the opened mode is a block algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_is_block_algorithm_mode(|)' hint='bool mcrypt_enc_is_block_algorithm_mode(resource td) - Checks whether the encryption of the opened mode works on blocks. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_enc_self_test(|)' hint='bool mcrypt_enc_self_test(resource td) - This function runs a self test on the opened module. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_generic(|)' hint='string mcrypt_generic(resource td, string data) - This function encrypts data. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>m - mcrypt_generic_d' inserttext='mcrypt_generic_deinit(|)' hint='bool mcrypt_generic_deinit(resource td) - This function deinitializes an encryption module. (PHP 4>=4.1.1)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_generic_end(|)' hint='bool mcrypt_generic_end(resource td) - This function terminates encryption. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_generic_init(|)' hint='int mcrypt_generic_init(resource td, string key, string iv) - This function initializes all buffers needed for encryption. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_get_block_size(|)' hint='int mcrypt_get_block_size(int cipher) - Get the block size of the specified cipher. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_get_cipher_name(|)' hint='string mcrypt_get_cipher_name(int cipher) - Get the name of the specified cipher. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_get_iv_size(|)' hint='int mcrypt_get_iv_size(string cipher, string mode) - Returns the size of the IV belonging to a specific cipher/mode combination. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_get_key_size(|)' hint='int mcrypt_get_key_size(int cipher) - Get the key size of the specified cipher. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_list_algorithms(|)' hint='array mcrypt_list_algorithms([string lib_dir]) - Get an array of all supported ciphers. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_list_modes(|)' hint='array mcrypt_list_modes([string lib_dir]) - Get an array of all supported modes. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_close(|)' hint='bool mcrypt_module_close(resource td) - Close the mcrypt module. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_get_algo_block_size(|)' hint='int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir]) - Returns the blocksize of the specified algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_get_algo_key_size(|)' hint='int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir]) - Returns the maximum supported keysize of the opened mode. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_get_supported_key_sizes(|)' hint='array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir]) - Returns an array with the supported keysizes of the opened algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_is_block_algorithm(|)' hint='bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir]) - This function checks whether the specified algorithm is a block algorithm. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_is_block_algorithm_mode(|)' hint='bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir]) - Returns if the specified module is a block algorithm or not. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_is_block_mode(|)' hint='bool mcrypt_module_is_block_mode(string mode [, string lib_dir]) - Returns if the specified mode outputs blocks or not. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_open(|)' hint='resource mcrypt_module_open(string algorithm, string algorithm_directory, string mode, string mode_directory) - Opens the module of the algorithm and the mode to be used. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_module_self_test(|)' hint='bool mcrypt_module_self_test(string algorithm [, string lib_dir]) - This function runs a self test on the specified module. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='M' submenu='Mcrypt Encryption-->>mcrypt_generic_e - m' inserttext='mcrypt_ofb(|)' hint='string mcrypt_ofb(int cipher, string key, string data, int mode, string iv) - Encrypt/decrypt data in OFB mode. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mhash' inserttext='mhash_count()' hint='int mhash_count(void) - Get the highest available hash id. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mhash' inserttext='mhash_get_block_size(|)' hint='int mhash_get_block_size(int hash) - Get the block size of the specified hash. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mhash' inserttext='mhash_get_hash_name(|)' hint='string mhash_get_hash_name(int hash) - Get the name of the specified hash. (PHP 3>=3.0.9, PHP 4)' flags='130'/>
<tag menu='M' submenu='Mhash' inserttext='mhash_keygen_s2k(|)' hint='string mhash_keygen_s2k(int hash, string password, string salt, int bytes) - Generates a key. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_bind(|)' hint='bool mssql_bind(resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]]) - Adds a parameter to a stored procedure or a remote stored procedure. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_close(|)' hint='bool mssql_close([resource link_identifier]) - Close MS SQL Server connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_connect(|)' hint='int mssql_connect([string servername [, string username [, string password]]]) - Open MS SQL server connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_execute(|)' hint='mixed mssql_execute(resource stmt [, bool skip_results]) - Executes a stored procedure on a MS SQL server database. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_fetch_array(|)' hint='array mssql_fetch_array(resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_fetch_assoc(|)' hint='array mssql_fetch_assoc(resource result_id) - Returns an associative array of the current row in the result set specified by result_id. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_fetch_batch(|)' hint='int mssql_fetch_batch(resource result_index) - Returns the next batch of records. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_fetch_field(|)' hint='object mssql_fetch_field(resource result [, int field_offset]) - Get field information. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_field_length(|)' hint='int mssql_field_length(resource result [, int offset]) - Get the length of a field. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_field_name(|)' hint='string mssql_field_name(resource result [, int offset]) - Get the name of a field. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_field_seek(|)' hint='bool mssql_field_seek(resource result, int field_offset) - Seeks to the specified field offset. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>m - mssql_fi' inserttext='mssql_field_type(|)' hint='string mssql_field_type(resource result [, int offset]) - Gets the type of a field. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>mssql_fr - m' inserttext='mssql_next_result(|)' hint='bool mssql_next_result(resource result_id) - Move the internal result pointer to the next result. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>mssql_fr - m' inserttext='mssql_num_fields(|)' hint='int mssql_num_fields(resource result) - Gets the number of fields in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>mssql_fr - m' inserttext='mssql_num_rows(|)' hint='int mssql_num_rows(resource result) - Gets the number of rows in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>mssql_fr - m' inserttext='mssql_result(|)' hint='string mssql_result(resource result, int row, mixed field) - Get result data. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Microsoft SQL Server-->>mssql_fr - m' inserttext='mssql_rows_affected(|)' hint='int mssql_rows_affected(resource conn_id) - Returns the number of records affected by the query. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='constant(|)' hint='mixed constant(string name) - Returns the value of a constant. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='define(|)' hint='bool define(string name, mixed value [, bool case_insensitive]) - Defines a named constant. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='defined(|)' hint='bool defined(string name) - Checks whether a given named constant exists. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='die(|)' hint='die - Alias of exit().' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='eval(|)' hint='mixed eval(string code_str) - Evaluate a string as PHP code. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='exit(|)' hint='void exit([string status]) - Output a message and terminate the current script. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='get_browser(|)' hint="object get_browser([string user_agent]) - Tells what the user's browser is capable of. (PHP 3, PHP 4)" flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='highlight_file(|)' hint='mixed highlight_file(string filename [, bool return]) - Syntax highlighting of a file. (PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='highlight_string(|)' hint='mixed highlight_string(string str [, bool return]) - Syntax highlighting of a string. (PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='ignore_user_abort(|)' hint='int ignore_user_abort([bool setting]) - Set whether a client disconnect should abort script execution. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='pack(|)' hint='string pack(string format [, mixed args]) - Pack data into binary string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='Miscellaneous' inserttext='show_source(|)' hint='show_source - Alias of highlight_file().' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>m - mb_e' inserttext='mb_ereg_search_getpos()' hint='array mb_ereg_search_getpos(void) - Returns start point for next regular expression match. (4.2.0-4.3.2 only)' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>m - mb_e' inserttext='mb_ereg_search_getregs()' hint='array mb_ereg_search_getregs(void) - Retrieve the result from the last multibyte regular expression match. (4.2.0-4.3.2 only)' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>mb_g - m' inserttext='mb_strpos(|)' hint='int mb_strpos(string haystack, string needle [, int offset [, string encoding]]) - Find position of first occurrence of string in a string. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>mb_g - m' inserttext='mb_strrpos(|)' hint='int mb_strrpos(string haystack, string needle [, string encoding]) - Find position of last occurrence of a string in a string. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>mb_g - m' inserttext='mb_substr(|)' hint='string mb_substr(string str, int start [, int length [, string encoding]]) - Get part of string. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='Multi-Byte String-->>mb_g - m' inserttext='mb_substr_count(|)' hint='int mb_substr_count(string haystack, string needle [, string encoding]) - Count the number of substring occurrences. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_affected_rows(|)' hint='int mysql_affected_rows([resource link_identifier]) - Get number of affected rows in previous MySQL operation. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_change_user(|)' hint='int mysql_change_user(string user, string password [, string database [, resource link_identifier]]) - Change logged in user of the active connection. (PHP 3>=3.0.13)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_client_encoding(|)' hint='string mysql_client_encoding([resource link_identifier]) - Returns the name of the character set. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_close(|)' hint='bool mysql_close([resource link_identifier]) - Close MySQL connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_connect(|)' hint='resource mysql_connect([string server [, string username [, string password [, bool new_link [, int client_flags]]]]]) - Open a connection to a MySQL Server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_drop_db(|)' hint='bool mysql_drop_db(string database_name [, resource link_identifier]) - Drop (delete) a MySQL database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_errno(|)' hint='int mysql_errno([resource link_identifier]) - Returns the numerical value of the error message from previous MySQL operation. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_error(|)' hint='string mysql_error([resource link_identifier]) - Returns the text of the error message from previous MySQL operation. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_escape_string(|)' hint='string mysql_escape_string(string unescaped_string) - Escapes a string for use in a mysql_query. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_array(|)' hint='array mysql_fetch_array(resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_assoc(|)' hint='array mysql_fetch_assoc(resource result) - Fetch a result row as an associative array. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_field(|)' hint='object mysql_fetch_field(resource result [, int field_offset]) - Get column information from a result and return as an object. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_lengths(|)' hint='array mysql_fetch_lengths(resource result) - Get the length of each output in a result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_object(|)' hint='object mysql_fetch_object(resource result) - Fetch a result row as an object. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_fetch_row(|)' hint='array mysql_fetch_row(resource result) - Get a result row as an enumerated array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_field_flags(|)' hint='string mysql_field_flags(resource result, int field_offset) - Get the flags associated with the specified field in a result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_field_len(|)' hint='int mysql_field_len(resource result, int field_offset) - Returns the length of the specified field. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_field_name(|)' hint='string mysql_field_name(resource result, int field_index) - Get the name of the specified field in a result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_field_seek(|)' hint='int mysql_field_seek(resource result, int field_offset) - Set result pointer to a specified field offset. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>m - mysql_field_ta' inserttext='mysql_field_table(|)' hint='string mysql_field_table(resource result, int field_offset) - Get name of the table the specified field is in. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_field_type(|)' hint='string mysql_field_type(resource result, int field_offset) - Get the type of the specified field in a result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_get_client_info()' hint='string mysql_get_client_info(void) - Get MySQL client info. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_get_host_info(|)' hint='string mysql_get_host_info([resource link_identifier]) - Get MySQL host info. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_get_proto_info(|)' hint='int mysql_get_proto_info([resource link_identifier]) - Get MySQL protocol info. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_get_server_info(|)' hint='string mysql_get_server_info([resource link_identifier]) - Get MySQL server info. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_info(|)' hint='string mysql_info([resource link_identifier]) - Get information about the most recent query. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_insert_id(|)' hint='int mysql_insert_id([resource link_identifier]) - Get the ID generated from the previous INSERT operation. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_list_dbs(|)' hint='resource mysql_list_dbs([resource link_identifier]) - List databases available on a MySQL server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_list_processes(|)' hint='resource mysql_list_processes([resource link_identifier]) - List MySQL processes. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_list_tables(|)' hint='resource mysql_list_tables(string database [, resource link_identifier]) - List tables in a MySQL database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_num_fields(|)' hint='int mysql_num_fields(resource result) - Get number of fields in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_num_rows(|)' hint='int mysql_num_rows(resource result) - Get number of rows in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_pconnect(|)' hint='resource mysql_pconnect([string server [, string username [, string password [, int client_flags]]]]) - Open a persistent connection to a MySQL server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_ping(|)' hint='bool mysql_ping([resource link_identifier]) - Ping a server connection or reconnect if there is no connection. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_real_escape_string(|)' hint='string mysql_real_escape_string(string unescaped_string [, resource link_identifier]) - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_result(|)' hint='mixed mysql_result(resource result, int row [, mixed field]) - Get result data. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_stat(|)' hint='string mysql_stat([resource link_identifier]) - Get current system status. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_tablename(|)' hint='string mysql_tablename(resource result, int i) - Get table name of field. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_thread_id(|)' hint='int mysql_thread_id([resource link_identifier]) - Return the current thread ID. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='M' submenu='MySQL-->>mysql_field_ty - m' inserttext='mysql_unbuffered_query(|)' hint='resource mysql_unbuffered_query(string query [, resource link_identifier]) - Send an SQL query to MySQL, without fetching and buffering the result rows. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_list_dbs()' hint='int msql_list_dbs(void) - List mSQL databases on server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_list_fields(|)' hint='int msql_list_fields(string database, string tablename) - List result fields. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_list_tables(|)' hint='int msql_list_tables(string database) - List tables in an mSQL database. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_listdbs(|)' hint='msql_listdbs - List mSQL databases on server.' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_listfields(|)' hint='msql_listfields - List result fields.' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_listtables(|)' hint='msql_listtables - List tables in an mSQL database.' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_num_fields(|)' hint='int msql_num_fields(int query_identifier) - Get number of fields in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_num_rows(|)' hint='int msql_num_rows(resource query_identifier) - Get number of rows in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_numfields(|)' hint='int msql_numfields(int query_identifier) - Get number of fields in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mSQL-->>msql_fieldty - m' inserttext='msql_numrows()' hint='int msql_numrows(void) - Get number of rows in result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_api_version()' hint='int udm_api_version(void) - Get mnoGoSearch API version. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_cat_list(|)' hint='array udm_cat_list(resource agent, string category) - Get all the categories on the same level with the current one. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_cat_path(|)' hint='array udm_cat_path(resource agent, string category) - Get the path to the current category. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_check_charset(|)' hint='bool udm_check_charset(resource agent, string charset) - Check if the given charset is known to mnogosearch. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_check_stored(|)' hint='int udm_check_stored(resource agent, int link, string doc_id) - Check connection to stored. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_get_doc_count(|)' hint='int udm_get_doc_count(resource agent) - Get total number of documents in database. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_get_res_field(|)' hint='string udm_get_res_field(resource res, int row, int field) - Fetch mnoGoSearch result field. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_get_res_param(|)' hint='string udm_get_res_param(resource res, int param) - Get mnoGoSearch result parameters. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_load_ispell_data(|)' hint='bool udm_load_ispell_data(resource agent, int var, string val1, string val2, int flag) - Load ispell data. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_open_stored(|)' hint='int udm_open_stored(resource agent, string storedaddr) - Open connection to stored. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='M' submenu='mnoGoSearch' inserttext='udm_set_agent_param(|)' hint='bool udm_set_agent_param(resource agent, int var, string val) - Set mnoGoSearch agent session parameters. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='M' submenu='muscat' inserttext='muscat_close(|)' hint='int muscat_close(resource muscat_handle) - Shuts down the muscat session and releases any memory back to PHP. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='M' submenu='muscat' inserttext='muscat_get(|)' hint='string muscat_get(resource muscat_handle) - Gets a line back from the core muscat API. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='M' submenu='muscat' inserttext='muscat_give(|)' hint='int muscat_give(resource muscat_handle, string string) - Sends string to the core muscat API. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='M' submenu='muscat' inserttext='muscat_setup(|)' hint='resource muscat_setup(int size [, string muscat_dir]) - Creates a new muscat session and returns the handle. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='M' submenu='muscat' inserttext='muscat_setup_net(|)' hint='resource muscat_setup_net(string muscat_host, int port) - Creates a new muscat session and returns the handle. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='N' submenu='.NET' inserttext='dotnet_load(|)' hint='int dotnet_load(string assembly_name [, string datatype_name [, int codepage]]) - Loads a DOTNET module.' flags='130'/>
<tag menu='N' submenu='Network' inserttext='checkdnsrr(|)' hint='int checkdnsrr(string host [, string type]) - Check DNS records corresponding to a given Internet host name or IP address. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='closelog()' hint='int closelog(void) - Close connection to system logger. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='dns_get_record(|)' hint='array dns_get_record(string hostname [, int type [, array &authns, array &addtl]]) - Fetch DNS Resource Records associated with a hostname. (PHP 5 CVS only)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='fsockopen(|)' hint='resource fsockopen(string target, int port [, int errno [, string errstr [, float timeout]]]) - Open Internet or Unix domain socket connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='gethostbyaddr(|)' hint='string gethostbyaddr(string ip_address) - Get the Internet host name corresponding to a given IP address. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='gethostbyname(|)' hint='string gethostbyname(string hostname) - Get the IP address corresponding to a given Internet host name. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='gethostbynamel(|)' hint='array gethostbynamel(string hostname) - Get a list of IP addresses corresponding to a given Internet host name. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='getmxrr(|)' hint='int getmxrr(string hostname, array mxhosts [, array weight]) - Get MX records corresponding to a given Internet host name. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='getprotobyname(|)' hint='int getprotobyname(string name) - Get protocol number associated with protocol name. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='getprotobynumber(|)' hint='string getprotobynumber(int number) - Get protocol name associated with protocol number. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='getservbyname(|)' hint='int getservbyname(string service, string protocol) - Get port number associated with an Internet service and protocol. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='getservbyport(|)' hint='string getservbyport(int port, string protocol) - Get Internet service which corresponds to port and protocol. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='ip2long(|)' hint='int ip2long(string ip_address) - Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='long2ip(|)' hint='string long2ip(int proper_address) - Converts an (IPv4) Internet network address into a string in Internet standard dotted format. (PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='openlog(|)' hint='int openlog(string ident, int option, int facility) - Open connection to system logger. (PHP 3, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='pfsockopen(|)' hint='resource pfsockopen(string hostname, int port [, int errno [, string errstr [, int timeout]]]) - Open persistent Internet or Unix domain socket connection. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='N' submenu='Network' inserttext='socket_get_status(|)' hint='socket_get_status - Alias of stream_get_meta_data().' flags='130'/>
<tag menu='N' submenu='Network' inserttext='socket_set_blocking(|)' hint='socket_set_blocking - Alias for stream_set_blocking().' flags='130'/>
<tag menu='N' submenu='Network' inserttext='socket_set_timeout(|)' hint='<P>
socket_set_timeout - Alias for stream_set_timeout().' flags='130'/>
<tag menu='N' submenu='Network' inserttext='syslog(|)' hint='int syslog(int priority, string message) - Generate a system log message. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_csr_export(|)' hint='bool openssl_csr_export(resource csr, string &out [, bool notext]) - Exports a CSR as a string. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_csr_export_to_file(|)' hint='bool openssl_csr_export_to_file(resource csr, string outfilename [, bool notext]) - Exports a CSR to a file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_csr_sign(|)' hint='resource openssl_csr_sign(mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]]) - Sign a CSR with another certificate (or itself) and generate a certificate. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_get_privatekey(|)' hint='resource openssl_get_privatekey(mixed key [, string passphrase]) - Get a private key. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_get_publickey(|)' hint='resource openssl_get_publickey(mixed certificate) - Extract public key from certificate and prepare it for use. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_pkcs7_verify(|)' hint='bool openssl_pkcs7_verify(string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]]) - Verifies the signature of an S/MIME signed message. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_pkey_export(|)' hint='bool openssl_pkey_export(mixed key, string &out [, string passphrase [, array configargs]]) - Gets an exportable representation of a key into a string. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_pkey_export_to_file(|)' hint='bool openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase [, array configargs]]) - Gets an exportable representation of a key into a file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>o - openssl_pkey_get_pr' inserttext='openssl_pkey_get_private(|)' hint='resource openssl_pkey_get_private(mixed key [, string passphrase]) - Get a private key. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_pkey_get_public(|)' hint='resource openssl_pkey_get_public(mixed certificate) - Extract public key from certificate and prepare it for use. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_pkey_new(|)' hint='resource openssl_pkey_new([array configargs]) - Generates a new private key. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_private_decrypt(|)' hint='bool openssl_private_decrypt(string data, string &decrypted, mixed key [, int padding]) - Decrypts data with private key. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_private_encrypt(|)' hint='bool openssl_private_encrypt(string data, string &crypted, mixed key [, int padding]) - Encrypts data with private key. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_public_decrypt(|)' hint='bool openssl_public_decrypt(string data, string &crypted, resource key [, int padding]) - Decrypts data with public key. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_public_encrypt(|)' hint='bool openssl_public_encrypt(string data, string &crypted, mixed key [, int padding]) - Encrypts data with public key. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_check_private_key(|)' hint='bool openssl_x509_check_private_key(mixed cert, mixed key) - Checks if a private key corresponds to a certificate. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_checkpurpose(|)' hint='bool openssl_x509_checkpurpose(mixed x509cert, int purpose, array cainfo [, string untrustedfile]) - Verifies if a certificate can be used for a particular purpose. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_export(|)' hint='bool openssl_x509_export(mixed x509, string &output [, bool notext]) - Exports a certificate as a string. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_export_to_file(|)' hint='bool openssl_x509_export_to_file(mixed x509, string outfilename [, bool notext]) - Exports a certificate to file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_parse(|)' hint='array openssl_x509_parse(mixed x509cert [, bool shortnames]) - Parse an X509 certificate and return the information as an array. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='OpenSSL-->>openssl_pkey_get_pu - o' inserttext='openssl_x509_read(|)' hint='resource openssl_x509_read(mixed x509certdata) - Parse an X.509 certificate and return a resource identifier for it. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_bind(|)' hint='bool ora_bind(resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type]) - Binds a PHP variable to an Oracle parameter. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_columnname(|)' hint='string ora_columnname(resource cursor, int column) - Gets the name of an Oracle result column. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_columnsize(|)' hint='int ora_columnsize(resource cursor, int column) - Returns the size of an Oracle result column. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_columntype(|)' hint='string ora_columntype(resource cursor, int column) - Gets the type of an Oracle result column. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_exec(|)' hint='bool ora_exec(resource cursor) - Execute a parsed statement on an Oracle cursor. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_fetch(|)' hint='bool ora_fetch(resource cursor) - Fetch a row of data from a cursor. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_fetch_into(|)' hint='int ora_fetch_into(resource cursor, array result [, int flags]) - Fetch a row into the specified result array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_getcolumn(|)' hint='mixed ora_getcolumn(resource cursor, int column) - Get data from a fetched column. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_logoff(|)' hint='bool ora_logoff(resource connection) - Close an Oracle connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_logon(|)' hint='resource ora_logon(string user, string password) - Open an Oracle connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_numcols(|)' hint='int ora_numcols(resource cursor) - Returns the number of columns. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle' inserttext='ora_numrows(|)' hint='int ora_numrows(resource cursor) - Returns the number of rows. (PHP 3, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollappend(|)' hint='bool ocicollappend(string value) - Append an object to the collection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollassign(|)' hint='bool ocicollassign(object from) - Assign a collection from another existing collection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollassignelem(|)' hint='bool ocicollassignelem(int ndx, string val) - Assign element val to collection at index ndx. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollgetelem(|)' hint='string ocicollgetelem(int ndx) - Retrieve the value at collection index ndx. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollmax()' hint='int ocicollmax(void) - Return the max value of a collection. For a varray this is the maximum length of the array. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicollsize()' hint='int ocicollsize(void) - Return the size of a collection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolltrim(|)' hint='bool ocicolltrim(int num) - Trim num elements from the end of a collection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumnisnull(|)' hint='bool ocicolumnisnull(resource stmt, mixed col) - Test whether a result column is NULL. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumnname(|)' hint='string ocicolumnname(resource stmt, int col) - Returns the name of a column. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumnprecision(|)' hint='int ocicolumnprecision(resource stmt, int col) - Tell the precision of a column. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumnscale(|)' hint='int ocicolumnscale(resource stmt, int col) - Tell the scale of a column. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumntype(|)' hint='mixed ocicolumntype(resource stmt, int col) - Returns the data type of a column. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocicolumntyperaw(|)' hint='mixed ocicolumntyperaw(resource stmt, int col) - Tell the raw oracle data type of a column. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocidefinebyname(|)' hint='bool ocidefinebyname(resource stmt, string column_name, mixed &variable [, int type]) - Use a PHP variable for the define-step during a SELECT. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocierror(|)' hint='array ocierror([resource stmt|conn|global]) - Return the last error of stmt|conn|global. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocifetch(|)' hint='bool ocifetch(resource stmt) - Fetches the next row into result-buffer. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocifetchinto(|)' hint='int ocifetchinto(resource stmt, array &result [, int mode]) - Fetches the next row into an array. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>o - ocife' inserttext='ocifetchstatement(|)' hint='int ocifetchstatement(resource stmt, array &output [, int skip [, int maxrows [, int flags]]]) - Fetch all rows of result data into an array. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociloadlob()' hint='string ociloadlob(void) - Loads a large object. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocilogoff(|)' hint='bool ocilogoff(resource connection) - Disconnects from Oracle server. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocilogon(|)' hint='resource ocilogon(string username, string password [, string db]) - Establishes a connection to Oracle. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocinewcollection(|)' hint='object ocinewcollection(resource connection, string tdo [, string schema]) - Initialize a new collection. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocinewcursor(|)' hint='resource ocinewcursor(resource conn) - Return a new cursor (Statement-Handle). (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocinewdescriptor(|)' hint='object ocinewdescriptor(resource connection [, int type]) - Initialize a new empty LOB or FILE descriptor. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocinlogon(|)' hint='resource ocinlogon(string username, string password [, string db]) - Establishes a new connection to Oracle. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocinumcols(|)' hint='int ocinumcols(resource stmt) - Return the number of result columns in a statement. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociparse(|)' hint='resource ociparse(resource conn, string query) - Parse a query and return an Oracle statement. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociplogon(|)' hint='resource ociplogon(string username, string password [, string db]) - Connect to an Oracle database using a persistent connection. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociresult(|)' hint='mixed ociresult(resource statement, mixed col) - Returns column value for fetched row. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocirollback(|)' hint='bool ocirollback(resource connection) - Rolls back outstanding transactions. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocirowcount(|)' hint='int ocirowcount(resource stmt) - Gets the number of affected rows. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocisavelob()' hint='bool ocisavelob(void) - Saves a large object. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocisavelobfile()' hint='bool ocisavelobfile(void) - Saves a large object file. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociserverversion(|)' hint='string ociserverversion(resource conn) - Return a string containing server version information. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocisetprefetch(|)' hint='bool ocisetprefetch(resource stmt, int rows) - Sets number of rows to be prefetched. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ocistatementtype(|)' hint='string ocistatementtype(resource stmt) - Return the type of an OCI statement. (PHP 3>=3.0.5, PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociwritelobtofile(|)' hint='bool ociwritelobtofile([string filename [, int start [, int length]]]) - Saves a large object file. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Oracle 8-->>ocifr - o' inserttext='ociwritetemporarylob(|)' hint='bool ociwritetemporarylob(string var [, int lob_type]) - Writes temporary blob.' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_clean()' hint='string ob_get_clean(void) - Get current buffer contents and delete current output buffer. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_contents()' hint='string ob_get_contents(void) - Return the contents of the output buffer. (PHP 4)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_flush()' hint='string ob_get_flush(void) - Flush the output buffer, return it as a string and turn off output buffering. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_length()' hint='int ob_get_length(void) - Return the length of the output buffer. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_level()' hint='int ob_get_level(void) - Return the nesting level of the output buffering mechanism. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_get_status(|)' hint='array ob_get_status([bool full_status]) - Get status of output buffers. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='O' submenu='Output Control' inserttext='ob_gzhandler(|)' hint='string ob_gzhandler(string buffer [, int mode]) - Ob_start callback function to gzip output buffer. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_cursor(|)' hint='string ovrimos_cursor(int result_id) - Returns the name of the cursor. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_fetch_into(|)' hint='bool ovrimos_fetch_into(int result_id, array result_array [, string how [, int rownumber]]) - Fetches a row from the result set. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_fetch_row(|)' hint='bool ovrimos_fetch_row(int result_id [, int how [, int row_number]]) - Fetches a row from the result set. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_field_len(|)' hint='int ovrimos_field_len(int result_id, int field_number) - Returns the length of the output column. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_field_name(|)' hint='string ovrimos_field_name(int result_id, int field_number) - Returns the output column name. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_field_num(|)' hint='int ovrimos_field_num(int result_id, string field_name) - Returns the (1-based) index of the output column. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_field_type(|)' hint='int ovrimos_field_type(int result_id, int field_number) - Returns the (numeric) type of the output column. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_longreadlen(|)' hint='bool ovrimos_longreadlen(int result_id, int length) - Specifies how many bytes are to be retrieved from long datatypes. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_num_fields(|)' hint='int ovrimos_num_fields(int result_id) - Returns the number of columns. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_num_rows(|)' hint='int ovrimos_num_rows(int result_id) - Returns the number of rows affected by update operations. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_result_all(|)' hint='int ovrimos_result_all(int result_id [, string format]) - Prints the whole result set as an HTML table. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='O' submenu='Ovrimos SQL' inserttext='ovrimos_rollback(|)' hint='bool ovrimos_rollback(int connection_id) - Rolls back the transaction. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='P' submenu='PDF-->>p - pdf_close_i' inserttext='pdf_circle(|)' hint='bool pdf_circle(resource pdfdoc, float x, float y, float r) - Draws a circle. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>p - pdf_close_i' inserttext='pdf_clip(|)' hint='bool pdf_clip(resource pdfdoc) - Clips to current path. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>p - pdf_close_i' inserttext='pdf_close(|)' hint='bool pdf_close(resource pdfdoc) - Closes a pdf resource. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>p - pdf_close_i' inserttext='pdf_close_image(|)' hint='void pdf_close_image(resource pdfdoc, int image) - Closes an image. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_close_p - pdf_get_fontn' inserttext='pdf_close_pdi(|)' hint='bool pdf_close_pdi(resource pdfdoc, int dochandle) - Close the input PDF document. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_close_p - pdf_get_fontn' inserttext='pdf_close_pdi_page(|)' hint='bool pdf_close_pdi_page(resource pdfdoc, int pagehandle) - Close the page handle. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_close_p - pdf_get_fontn' inserttext='pdf_fill_stroke(|)' hint='bool pdf_fill_stroke(resource pdfdoc) - Fills and strokes current path. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_close_p - pdf_get_fontn' inserttext='pdf_findfont(|)' hint='int pdf_findfont(resource pdfdoc, string fontname, string encoding [, int embed]) - Prepare font for later use with pdf_setfont(). (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_close_p - pdf_get_fontn' inserttext='pdf_get_buffer(|)' hint='string pdf_get_buffer(resource pdfdoc) - Fetch the buffer containing the generated PDF data. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_get_image_height(|)' hint='pdf_get_image_height - Deprecated: returns height of an image.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_get_image_width(|)' hint='pdf_get_image_width - Deprecated: Returns width of an image.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_get_majorversion()' hint='int pdf_get_majorversion(void) - Returns the major version number of the PDFlib. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_get_minorversion()' hint='int pdf_get_minorversion(void) - Returns the minor version number of the PDFlib. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_new(|)' hint='resource pdf_new() - Creates a new pdf resource. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_open(|)' hint='pdf_open - Deprecated: Open a new pdf object.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_open_CCITT(|)' hint='int pdf_open_CCITT(resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1) - Opens a new image file with raw CCITT data. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_open_file(|)' hint='bool pdf_open_file(resource pdfdoc [, string filename]) - Opens a new pdf object. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_get_fonts - pdf_open_image' inserttext='pdf_open_image(|)' hint='int pdf_open_image(resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_font(|)' hint='pdf_set_font - Deprecated: Selects a font face and size.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info(|)' hint='bool pdf_set_info(resource pdfdoc, string key, string value) - Fills a field of the document information. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info_author(|)' hint='pdf_set_info_author - Deprecated: Fills the author field of the document.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info_creator(|)' hint='pdf_set_info_creator - Deprecated: Fills the creator field of the document.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info_keywords(|)' hint='pdf_set_info_keywords - Deprecated: Fills the keywords field of the document.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info_subject(|)' hint='pdf_set_info_subject - Deprecated: Fills the subject field of the document.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_info_title(|)' hint='pdf_set_info_title - Deprecated: Fills the title field of the document.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_leading(|)' hint='pdf_set_leading - Deprecated: Sets distance between text lines.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_text_matrix(|)' hint='<P>
This function is deprecated, use pdf_set_text_matrix - Deprecated: Sets the text matrix.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_text_rendering(|)' hint='pdf_set_text_rendering - Deprecated: Determines how text is rendered.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_set_f - pdf_setfl' inserttext='pdf_set_text_rise(|)' hint='pdf_set_text_rise - Deprecated: Sets the text rise.' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setfont(|)' hint='bool pdf_setfont(resource pdfdoc, int font, float size) - Set the current font. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setgray(|)' hint='bool pdf_setgray(resource pdfdoc, float gray) - Sets drawing and filling color to gray value. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setgray_fill(|)' hint='bool pdf_setgray_fill(resource pdfdoc, float gray) - Sets filling color to gray value. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setgray_stroke(|)' hint='bool pdf_setgray_stroke(resource pdfdoc, float gray) - Sets drawing color to gray value. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setlinecap(|)' hint='void pdf_setlinecap(resource pdfdoc, int linecap) - Sets linecap parameter. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setlinejoin(|)' hint='bool pdf_setlinejoin(resource pdfdoc, int value) - Sets linejoin parameter. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setlinewidth(|)' hint='void pdf_setlinewidth(resource pdfdoc, float width) - Sets line width. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_setmatrix(|)' hint='bool pdf_setmatrix(resource pdfdoc, float a, float b, float c, float d, float e, float f) - Sets current transformation matrix. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_stringwidth(|)' hint='float pdf_stringwidth(resource pdfdoc, string text [, int font [, float size]]) - Returns width of text using current font. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PDF-->>pdf_setfo - p' inserttext='pdf_stroke(|)' hint='bool pdf_stroke(resource pdfdoc) - Draws line along path. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='extension_loaded(|)' hint='bool extension_loaded(string name) - Find out whether an extension is loaded. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_cfg_var(|)' hint='string get_cfg_var(string varname) - Gets the value of a PHP configuration option. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_current_user()' hint='string get_current_user(void) - Gets the name of the owner of the current PHP script. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_defined_constants()' hint='array get_defined_constants(void) - Returns an associative array with the names of all the constants and their values. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_extension_funcs(|)' hint='array get_extension_funcs(string module_name) - Returns an array with the names of the functions of a module. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_include_path()' hint='string get_include_path(void) - Gets the current include_path configuration option. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_included_files()' hint='array get_included_files(void) - Returns an array with the names of included or required files. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_loaded_extensions()' hint='array get_loaded_extensions(void) - Returns an array with the names of all modules compiled and loaded. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_magic_quotes_gpc()' hint='int get_magic_quotes_gpc(void) - Gets the current active configuration setting of magic quotes gpc. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_magic_quotes_runtime()' hint='int get_magic_quotes_runtime(void) - Gets the current active configuration setting of magic_quotes_runtime. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='get_required_files(|)' hint='get_required_files - Alias of get_included_files().' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='getenv(|)' hint='string getenv(string varname) - Gets the value of an environment variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>a - g' inserttext='getlastmod()' hint='int getlastmod(void) - Gets time of last page modification. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='ini_restore(|)' hint='string ini_restore(string varname) - Restores the value of a configuration option. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='ini_set(|)' hint='string ini_set(string varname, string newvalue) - Sets the value of a configuration option. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='main(|)' hint='<P>
There is no function named main - Dummy for main().' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='memory_get_usage()' hint='int memory_get_usage(void) - Returns the amount of memory allocated to PHP. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='php_ini_scanned_files()' hint='string php_ini_scanned_files(void) - Return a list of .ini files parsed from the additional ini dir. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='php_logo_guid()' hint='string php_logo_guid(void) - Gets the logo guid. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='php_sapi_name()' hint='string php_sapi_name(void) - Returns the type of interface between web server and PHP. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='php_uname()' hint='string php_uname(void) - Returns information about the operating system PHP was built on. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='phpcredits(|)' hint='void phpcredits([int flag]) - Prints out the credits for PHP. (PHP 4)' flags='130'/>
<tag menu='P' submenu='PHP Options&Information-->>i - z' inserttext='zend_version()' hint='string zend_version(void) - Gets the version of the current Zend engine. (PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_ctermid()' hint='string posix_ctermid(void) - Get path name of controlling terminal. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_get_last_error()' hint='int posix_get_last_error(void) - Retrieve the error number set by the last posix function that failed. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getcwd()' hint='string posix_getcwd(void) - Pathname of current directory. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getegid()' hint='int posix_getegid(void) - Return the effective group ID of the current process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_geteuid()' hint='int posix_geteuid(void) - Return the effective user ID of the current process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getgid()' hint='int posix_getgid(void) - Return the real group ID of the current process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getgrgid(|)' hint='array posix_getgrgid(int gid) - Return info about a group by group id. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getgrnam(|)' hint='array posix_getgrnam(string name) - Return info about a group by name. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getgroups()' hint='array posix_getgroups(void) - Return the group set of the current process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getpgid(|)' hint='int posix_getpgid(int pid) - Get process group id for job control. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getpgrp()' hint='int posix_getpgrp(void) - Return the current process group identifier. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getpid()' hint='int posix_getpid(void) - Return the current process identifier. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getppid()' hint='int posix_getppid(void) - Return the parent process identifier. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getpwnam(|)' hint='array posix_getpwnam(string username) - Return info about a user by username. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>p - posix_getp' inserttext='posix_getpwuid(|)' hint='array posix_getpwuid(int uid) - Return info about a user by user id. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_getrlimit()' hint='array posix_getrlimit(void) - Return info about system resource limits. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_getsid(|)' hint='int posix_getsid(int pid) - Get the current sid of the process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_getuid()' hint='int posix_getuid(void) - Return the real user ID of the current process. (PHP 3>=3.0.10, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_isatty(|)' hint='bool posix_isatty(int fd) - Determine if a file descriptor is an interactive terminal. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_kill(|)' hint='bool posix_kill(int pid, int sig) - Send a signal to a process. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_mkfifo(|)' hint='bool posix_mkfifo(string pathname, int mode) - Create a fifo special file (a named pipe). (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_setegid(|)' hint='bool posix_setegid(int gid) - Set the effective GID of the current process. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_seteuid(|)' hint='bool posix_seteuid(int uid) - Set the effective UID of the current process. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_setgid(|)' hint='bool posix_setgid(int gid) - Set the GID of the current process. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_setpgid(|)' hint='int posix_setpgid(int pid, int pgid) - Set process group id for job control. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_setsid()' hint='int posix_setsid(void) - Make the current process a session leader. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_setuid(|)' hint='bool posix_setuid(int uid) - Set the UID of the current process. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_strerror(|)' hint='string posix_strerror(int errno) - Retrieve the system error message associated with the given errno. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='POSIX-->>posix_getr - p' inserttext='posix_times()' hint='array posix_times(void) - Get process times. (PHP 3>=3.0.13, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_all(|)' hint='array pg_fetch_all(resource result) - Fetches all rows from a result as an array. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_array(|)' hint='array pg_fetch_array(resource result [, int row [, int result_type]]) - Fetch a row as an array. (PHP 3>=3.0.1, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_assoc(|)' hint='array pg_fetch_assoc(resource result [, int row]) - Fetch a row as an associative array. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_object(|)' hint='object pg_fetch_object(resource result [, int row [, int result_type]]) - Fetch a row as an object. (PHP 3>=3.0.1, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_result(|)' hint='mixed pg_fetch_result(resource result, int row, mixed field) - Returns values from a result resource. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>p - pg_fe' inserttext='pg_fetch_row(|)' hint='array pg_fetch_row(resource result, int row) - Get a row as an enumerated array. (PHP 3>=3.0.1, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_field_is_null(|)' hint='int pg_field_is_null(resource result, int row, mixed field) - Test if a field is NULL. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_field_name(|)' hint='string pg_field_name(resource result, int field_number) - Returns the name of a field. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_field_num(|)' hint='int pg_field_num(resource result, string field_name) - Returns the field number of the named field. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_field_size(|)' hint='int pg_field_size(resource result, int field_number) - Returns the internal storage size of the named field. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_field_type(|)' hint='string pg_field_type(resource result, int field_number) - Returns the type name for the corresponding field number. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_last_error(|)' hint='string pg_last_error([resource connection]) - Get the last error message string of a connection. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_last_notice(|)' hint='string pg_last_notice(resource connection) - Returns the last notice message from PostgreSQL server. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_last_oid(|)' hint="int pg_last_oid(resource result) - Returns the last object's oid. (PHP 4>=4.2.0)" flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_close(|)' hint='bool pg_lo_close(resource large_object) - Close a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_create(|)' hint='int pg_lo_create(resource connection) - Create a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_export(|)' hint='bool pg_lo_export(int oid, string pathname [, resource connection]) - Export a large object to file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_import(|)' hint='int pg_lo_import([resource connection, string pathname]) - Import a large object from file. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_open(|)' hint='resource pg_lo_open(resource connection, int oid, string mode) - Open a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_read(|)' hint='string pg_lo_read(resource large_object, int len) - Read a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_fi - pg_lo_r' inserttext='pg_lo_read_all(|)' hint='int pg_lo_read_all(resource large_object) - Reads an entire large object and send straight to browser. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_lo_seek(|)' hint='bool pg_lo_seek(resource large_object, int offset [, int whence]) - Seeks position of large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_lo_tell(|)' hint='int pg_lo_tell(resource large_object) - Returns current position of large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_lo_unlink(|)' hint='bool pg_lo_unlink(resource connection, int oid) - Delete a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_lo_write(|)' hint='int pg_lo_write(resource large_object, string data) - Write a large object. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_meta_data(|)' hint='array pg_meta_data(resource connection, string table_name) - Get meta data for table. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_num_fields(|)' hint='int pg_num_fields(resource result) - Returns the number of fields. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_num_rows(|)' hint='int pg_num_rows(resource result) - Returns the number of rows. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_options(|)' hint='string pg_options(resource connection) - Get the options associated with the connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_pconnect(|)' hint='resource pg_pconnect(string connection_string) - Open a persistent PostgreSQL connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_port(|)' hint='int pg_port(resource connection) - Return the port number associated with the connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_put_line(|)' hint='bool pg_put_line([resource connection, string data]) - Send a NULL-terminated string to PostgreSQL backend. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_query(|)' hint='resource pg_query(resource connection, string query) - Execute a query. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_result_error(|)' hint='string pg_result_error(resource result) - Get error message associated with result. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_result_seek(|)' hint='array pg_result_seek(resource result, int offset) - Set internal row offset in result resource. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_result_status(|)' hint='int pg_result_status(resource result) - Get status of query result. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_select(|)' hint='array pg_select(resource connection, string table_name, array assoc_array [, int options]) - Select records. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_tty(|)' hint='string pg_tty(resource connection) - Return the tty name associated with the connection. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_unescape_bytea(|)' hint='string pg_unescape_bytea(string data) - Unescape binary for bytea type. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='PostgreSQL-->>pg_lo_s - p' inserttext='pg_untrace(|)' hint='bool pg_untrace([resource connection]) - Disable tracing of a PostgreSQL connection. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_close(|)' hint='void printer_close(resource handle) - Close an open printer connection.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_create_brush(|)' hint='mixed printer_create_brush(int style, string color) - Create a new brush.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_create_dc(|)' hint='void printer_create_dc(resource handle) - Create a new device context.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_create_font(|)' hint='mixed printer_create_font(string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton) - Create a new font.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_create_pen(|)' hint='mixed printer_create_pen(int style, int width, string color) - Create a new pen.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_draw_bmp(|)' hint='void printer_draw_bmp(resource handle, string filename, int x, int y) - Draw a bmp.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_draw_chord(|)' hint='void printer_draw_chord(resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1) - Draw a chord.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_draw_elipse(|)' hint='void printer_draw_elipse(resource handle, int ul_x, int ul_y, int lr_x, int lr_y) - Draw an ellipse.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_draw_line(|)' hint='void printer_draw_line(resource printer_handle, int from_x, int from_y, int to_x, int to_y) - Draw a line.' flags='130'/>
<tag menu='P' submenu='Printer-->>p - printer_draw_p' inserttext='printer_draw_pie(|)' hint='void printer_draw_pie(resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y) - Draw a pie.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_draw_rectangle(|)' hint='void printer_draw_rectangle(resource handle, int ul_x, int ul_y, int lr_x, int lr_y) - Draw a rectangle.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_draw_roundrect(|)' hint='void printer_draw_roundrect(resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height) - Draw a rectangle with rounded corners.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_draw_text(|)' hint='void printer_draw_text(resource printer_handle, string text, int x, int y) - Draw text.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_end_doc(|)' hint='bool printer_end_doc(resource handle) - Close document.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_end_page(|)' hint='bool printer_end_page(resource handle) - Close active page.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_list(|)' hint='array printer_list(int enumtype [, string name [, int level]]) - Return an array of printers attached to the server.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_logical_fontheight(|)' hint='int printer_logical_fontheight(resource handle, int height) - Get logical font height.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_open(|)' hint='mixed printer_open([string devicename]) - Open connection to a printer.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_select_brush(|)' hint='void printer_select_brush(resource printer_handle, resource brush_handle) - Select a brush.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_select_font(|)' hint='void printer_select_font(resource printer_handle, resource font_handle) - Select a font.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_select_pen(|)' hint='void printer_select_pen(resource printer_handle, resource pen_handle) - Select a pen.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_set_option(|)' hint='bool printer_set_option(resource handle, int option, mixed value) - Configure the printer connection.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_start_doc(|)' hint='bool printer_start_doc(resource handle [, string document]) - Start a new document.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_start_page(|)' hint='bool printer_start_page(resource handle) - Start a new page.' flags='130'/>
<tag menu='P' submenu='Printer-->>printer_draw_r - p' inserttext='printer_write(|)' hint='bool printer_write(resource handle, string content) - Write data to the printer.' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_exec(|)' hint='bool pcntl_exec(string path [, array args [, array envs]]) - Executes specified program in current process space. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_fork()' hint='int pcntl_fork(void) - Forks the currently running process. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_waitpid(|)' hint='int pcntl_waitpid(int pid, int &status, int options) - Waits on or returns the status of a forked child. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wexitstatus(|)' hint='int pcntl_wexitstatus(int status) - Returns the return code of a terminated child. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wifexited(|)' hint='int pcntl_wifexited(int status) - Returns TRUE if status code represents a successful exit. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wifsignaled(|)' hint='int pcntl_wifsignaled(int status) - Returns TRUE if status code represents a termination due to a signal. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wifstopped(|)' hint='int pcntl_wifstopped(int status) - Returns TRUE if child process is currently stopped. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wstopsig(|)' hint='int pcntl_wstopsig(int status) - Returns the signal which caused the child to stop. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Process Control' inserttext='pcntl_wtermsig(|)' hint='int pcntl_wtermsig(int status) - Returns the signal which caused the child to terminate. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='escapeshellarg(|)' hint='string escapeshellarg(string arg) - Escape a string to be used as a shell argument. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='passthru(|)' hint='void passthru(string command [, int return_var]) - Execute an external program and display raw output. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='proc_close(|)' hint='int proc_close(resource process) - Close a process opened by proc_open() and return the exit code of that process. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='proc_get_status(|)' hint='array proc_get_status(resource process) - Get information about a process opened by proc_open(). (PHP 5 CVS only)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='proc_nice(|)' hint='bool proc_nice(int priority) - Change the priority of the current process. (PHP 5 CVS only)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='proc_open(|)' hint='resource proc_open(string cmd, array descriptorspec, array pipes) - Execute a command and open file pointers for input/output. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='proc_terminate(|)' hint='int proc_terminate(resource process [, int signal]) - Kills a process opened by proc_open. (PHP 5 CVS only)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='shell_exec(|)' hint='string shell_exec(string cmd) - Execute command via shell and return the complete output as a string. (PHP 4)' flags='130'/>
<tag menu='P' submenu='Program Execution' inserttext='system(|)' hint='string system(string command [, int return_var]) - Execute an external program and display the output. (PHP 3, PHP 4)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_add_to_personal(|)' hint='int pspell_add_to_personal(int dictionary_link, string word) - Add the word to a personal wordlist. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_add_to_session(|)' hint='int pspell_add_to_session(int dictionary_link, string word) - Add the word to the wordlist in the current session. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_check(|)' hint='bool pspell_check(int dictionary_link, string word) - Check a word. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_clear_session(|)' hint='int pspell_clear_session(int dictionary_link) - Clear the current session. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_create(|)' hint='int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]]) - Create a config used to open a dictionary. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_ignore(|)' hint='int pspell_config_ignore(int dictionary_link, int n) - Ignore words less than N characters long. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_mode(|)' hint='int pspell_config_mode(int dictionary_link, int mode) - Change the mode number of suggestions returned. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_personal(|)' hint='int pspell_config_personal(int dictionary_link, string file) - Set a file that contains personal wordlist. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_repl(|)' hint='int pspell_config_repl(int dictionary_link, string file) - Set a file that contains replacement pairs. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_runtogether(|)' hint='int pspell_config_runtogether(int dictionary_link, bool flag) - Consider run-together words as valid compounds. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_config_save_repl(|)' hint='int pspell_config_save_repl(int dictionary_link, bool flag) - Determine whether to save a replacement pairs list along with the wordlist. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_new(|)' hint='int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) - Load a new dictionary. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_new_config(|)' hint='int pspell_new_config(int config) - Load a new dictionary with settings based on a given config. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_new_personal(|)' hint='int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) - Load a new dictionary with personal wordlist. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_save_wordlist(|)' hint='int pspell_save_wordlist(int dictionary_link) - Save the personal wordlist to a file. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_store_replacement(|)' hint='int pspell_store_replacement(int dictionary_link, string misspelled, string correct) - Store a replacement pair for a word. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='P' submenu='Pspell' inserttext='pspell_suggest(|)' hint='array pspell_suggest(int dictionary_link, string word) - Suggest spellings of a word. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='R' submenu='Regular Expression (POSIX Extended)' inserttext='split(|)' hint='array split(string pattern, string string [, int limit]) - Split string into array by regular expression. (PHP 3, PHP 4)' flags='130'/>
<tag menu='R' submenu='Regular Expression (POSIX Extended)' inserttext='spliti(|)' hint='array spliti(string pattern, string string [, int limit]) - Split string into array by regular expression case insensitive. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='R' submenu='Regular Expression (POSIX Extended)' inserttext='sql_regcase(|)' hint='string sql_regcase(string string) - Make regular expression for case insensitive match. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_affected_rows(|)' hint='int sesam_affected_rows(string result_id) - Get number of rows affected by an immediate query. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_commit()' hint='bool sesam_commit(void) - Commit pending updates to the SESAM database. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_diagnostic()' hint='array sesam_diagnostic(void) - Return status information for last SESAM call. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_fetch_array(|)' hint='array sesam_fetch_array(string result_id [, int whence [, int offset]]) - Fetch one row as an associative array. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_fetch_result(|)' hint='mixed sesam_fetch_result(string result_id [, int max_rows]) - Return all or part of a query result. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_fetch_row(|)' hint='array sesam_fetch_row(string result_id [, int whence [, int offset]]) - Fetch one row as an array. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_field_array(|)' hint='array sesam_field_array(string result_id) - Return meta information about individual columns in a result. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_field_name(|)' hint='int sesam_field_name(string result_id, int index) - Return one column name of the result set. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_free_result(|)' hint='int sesam_free_result(string result_id) - Releases resources for the query. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_num_fields(|)' hint='int sesam_num_fields(string result_id) - Return the number of fields/columns in a result set. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_query(|)' hint='string sesam_query(string query [, bool scrollable]) - Perform a SESAM SQL query and prepare the result. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_rollback()' hint='bool sesam_rollback(void) - Discard any pending updates to the SESAM database. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_seek_row(|)' hint='bool sesam_seek_row(string result_id, int whence [, int offset]) - Set scrollable cursor mode for subsequent fetches. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SESAM database' inserttext='sesam_settransaction(|)' hint='bool sesam_settransaction(int isolation_level, int read_only) - Set SESAM transaction parameters. (PHP 3 CVS only)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmp_get_quick_print()' hint="bool snmp_get_quick_print(void) - Fetches the current value of the UCD library's quick_print setting. (PHP 3>=3.0.8, PHP 4)" flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmp_set_quick_print(|)' hint='void snmp_set_quick_print(bool quick_print) - Set the value of quick_print within the UCD SNMP library. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmpget(|)' hint='string snmpget(string hostname, string community, string object_id [, int timeout [, int retries]]) - Fetch an SNMP object. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmprealwalk(|)' hint='array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]]) - Return all objects including their respective object ID within the specified one. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmpset(|)' hint='bool snmpset(string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]]) - Set an SNMP object. (PHP 3>=3.0.12, PHP 4)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmpwalk(|)' hint='array snmpwalk(string hostname, string community, string object_id [, int timeout [, int retries]]) - Fetch all the SNMP objects from an agent. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='SNMP' inserttext='snmpwalkoid(|)' hint='array snmpwalkoid(string hostname, string community, string object_id [, int timeout [, int retries]]) - Query for a tree of information about a network entity. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_array_query(|)' hint='array sqlite_array_query(resource dbhandle, string query [, int result_type [, bool decode_binary]]) - Execute a query against a given database and returns an array.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_busy_timeout(|)' hint='void sqlite_busy_timeout(resource dbhandle, int milliseconds) - Set busy timeout duration, or disable busy handlers.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_changes(|)' hint='int sqlite_changes(resource dbhandle) - Returns the number of rows that were changed by the most recent SQL statement.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_close(|)' hint='void sqlite_close(resource dbhandle) - Closes an open SQLite database.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_column(|)' hint='mixed sqlite_column(resource result, mixed index_or_name [, bool decode_binary]) - Fetches a column from the current row of a result set.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_create_aggregate(|)' hint='bool sqlite_create_aggregate(resource dbhandle, string function_name, mixed step_func, mixed finalize_func [, int num_args]) - Register an aggregating UDF for use in SQL statements.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_create_function(|)' hint='bool sqlite_create_function(resource dbhandle, string function_name, mixed callback [, int num_args]) - Registers a "regular" User Defined Function for use in SQL statements.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_current(|)' hint='array sqlite_current(resource result [, int result_type [, bool decode_binary]]) - Fetches the current row from a result set as an array.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_error_string(|)' hint='string sqlite_error_string(int error_code) - Returns the textual description of an error code.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_escape_string(|)' hint='string sqlite_escape_string(string item) - Escapes a string for use as a query parameter.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_fetch_array(|)' hint='array sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]]) - Fetches the next row from a result set as an array.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_fetch_single(|)' hint='string sqlite_fetch_single(resource result [, int result_type [, bool decode_binary]]) - Fetches the first column of a result set as a string.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_fetch_string(|)' hint='sqlite_fetch_string - Alias of sqlite_fetch_single().' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_field_name(|)' hint='string sqlite_field_name(resource result, int field_index) - Returns the name of a particular field.' flags='130'/>
<tag menu='S' submenu='SQLite-->>s - sqlite_h' inserttext='sqlite_has_more(|)' hint='bool sqlite_has_more(resource result) - Returns whether or not more rows are available.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_last_error(|)' hint='int sqlite_last_error(resource dbhandle) - Returns the error code of the last error for a database.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_last_insert_rowid(|)' hint='int sqlite_last_insert_rowid(resource dbhandle) - Returns the rowid of the most recently inserted row.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_libencoding()' hint='string sqlite_libencoding(void) - Returns the encoding of the linked SQLite library.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_libversion()' hint='string sqlite_libversion(void) - Returns the version of the linked SQLite library.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_next(|)' hint='bool sqlite_next(resource result) - Seek to the next row number.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_num_fields(|)' hint='int sqlite_num_fields(resource result) - Returns the number of fields in a result set.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_num_rows(|)' hint='int sqlite_num_rows(resource result) - Returns the number of rows in a buffered result set.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_open(|)' hint='resource sqlite_open(string filename [, int mode [, string &error_message]]) - Opens a SQLite database. Will create the database if it does not exist.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_popen(|)' hint='resource sqlite_popen(string filename [, int mode [, string &error_message]]) - Opens a persistent handle to an SQLite database. Will create the database if it does not exist.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_query(|)' hint='resource sqlite_query(resource dbhandle, string query) - Executes a query against a given database and returns a result handle.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_rewind(|)' hint='bool sqlite_rewind(resource result) - Seek to the first row number.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_seek(|)' hint='bool sqlite_seek(resource result, int rownum) - Seek to a particular row number of a buffered result set.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_udf_decode_binary(|)' hint='string sqlite_udf_decode_binary(string data) - Decode binary data passed as parameters to an UDF.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_udf_encode_binary(|)' hint='string sqlite_udf_encode_binary(string data) - Encode binary data before returning it from an UDF.' flags='130'/>
<tag menu='S' submenu='SQLite-->>sqlite_l - s' inserttext='sqlite_unbuffered_query(|)' hint='resource sqlite_unbuffered_query(resource dbhandle, string query) - Execute a query that does not prefetch and buffer all data.' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='ftok(|)' hint='int ftok(string pathname, string proj) - Convert a pathname and a project identifier to a System V IPC key. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_get_queue(|)' hint='int msg_get_queue(int key [, int perms]) - Create or attach to a message queue. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_receive(|)' hint='bool msg_receive(int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message [, bool unserialize [, int flags [, int errorcode]]]) - Receive a message from a message queue. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_remove_queue(|)' hint='bool msg_remove_queue(int queue) - Destroy a message queue. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_send(|)' hint='bool msg_send(int queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int errorcode]]]) - Send a message to a message queue. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_set_queue(|)' hint='bool msg_set_queue(int queue, array data) - Set information in the message queue data structure. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='msg_stat_queue(|)' hint='array msg_stat_queue(int queue) - Returns information from the message queue data structure. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='sem_acquire(|)' hint='bool sem_acquire(int sem_identifier) - Acquire a semaphore. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='sem_get(|)' hint='int sem_get(int key [, int max_acquire [, int perm]]) - Get a semaphore id. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='sem_release(|)' hint='bool sem_release(int sem_identifier) - Release a semaphore. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='sem_remove(|)' hint='bool sem_remove(int sem_identifier) - Remove a semaphore. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Semaphore, Shared Memory and IPC' inserttext='shm_attach(|)' hint='int shm_attach(int key [, int memsize [, int perm]]) - Creates or open a shared memory segment. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_cache_limiter(|)' hint='string session_cache_limiter([string cache_limiter]) - Get and/or set the current cache limiter. (PHP 4>=4.0.3)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_decode(|)' hint='bool session_decode(string data) - Decodes session data from a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_destroy()' hint='bool session_destroy(void) - Destroys all data registered to a session. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_encode()' hint='string session_encode(void) - Encodes the current session data as a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_get_cookie_params()' hint='array session_get_cookie_params(void) - Get the session cookie parameters. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_id(|)' hint='string session_id([string id]) - Get and/or set the current session id. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_is_registered(|)' hint='bool session_is_registered(string name) - Find out whether a global variable is registered in a session. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_module_name(|)' hint='string session_module_name([string module]) - Get and/or set the current session module. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_name(|)' hint='string session_name([string name]) - Get and/or set the current session name. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_regenerate_id()' hint='bool session_regenerate_id(void) - Update the current session id with a newly generated one. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_register(|)' hint='bool session_register(mixed name [, mixed ...]) - Register one or more global variables with the current session. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_save_path(|)' hint='string session_save_path([string path]) - Get and/or set the current session save path. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Session handling' inserttext='session_unregister(|)' hint='bool session_unregister(string name) - Unregister a global variable from the current session. (PHP 4)' flags='130'/>
<tag menu='S' submenu='Shared Memory' inserttext='shmop_open(|)' hint='int shmop_open(int key, string flags, int mode, int size) - Create or open shared memory block. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='S' submenu='Shared Memory' inserttext='shmop_read(|)' hint='string shmop_read(int shmid, int start, int count) - Read data from shared memory block. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='S' submenu='Shared Memory' inserttext='shmop_size(|)' hint='int shmop_size(int shmid) - Get size of shared memory block. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='S' submenu='Shared Memory' inserttext='shmop_write(|)' hint='int shmop_write(int shmid, string data, int offset) - Write data into shared memory block. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actiongeturl(|)' hint='void swf_actiongeturl(string url, string target) - Get a URL from a Shockwave Flash movie. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actiongotoframe(|)' hint='void swf_actiongotoframe(int framenumber) - Play a frame and then stop. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actiongotolabel(|)' hint='void swf_actiongotolabel(string label) - Display a frame with the specified label. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionnextframe()' hint='void swf_actionnextframe(void) - Go forward one frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionplay()' hint='void swf_actionplay(void) - Start playing the flash movie from the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionprevframe()' hint='void swf_actionprevframe(void) - Go backwards one frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionsettarget(|)' hint='void swf_actionsettarget(string target) - Set the context for actions. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionstop()' hint='void swf_actionstop(void) - Stop playing the flash movie at the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actiontogglequality()' hint='void swf_actiontogglequality(void) - Toggle between low and high quality. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_actionwaitforframe(|)' hint='void swf_actionwaitforframe(int framenumber, int skipcount) - Skip actions if a frame has not been loaded. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_addbuttonrecord(|)' hint='void swf_addbuttonrecord(int states, int shapeid, int depth) - Controls location, appearance and active area of the current button. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_addcolor(|)' hint='void swf_addcolor(float r, float g, float b, float a) - Set the global add color to the rgba value specified. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_closefile(|)' hint='void swf_closefile([int return_file]) - Close the current Shockwave Flash file. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_definetext(|)' hint='void swf_definetext(int objid, string str, int docenter) - Define a text string. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_endbutton()' hint='void swf_endbutton(void) - End the definition of the current button. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_enddoaction()' hint='void swf_enddoaction(void) - End the current action. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>s - swf_endsh' inserttext='swf_endshape()' hint='void swf_endshape(void) - Completes the definition of the current shape. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_endsymbol()' hint='void swf_endsymbol(void) - End the definition of a symbol. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_fontsize(|)' hint='void swf_fontsize(float size) - Change the font size. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_fontslant(|)' hint='void swf_fontslant(float slant) - Set the font slant. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_fonttracking(|)' hint='void swf_fonttracking(float tracking) - Set the current font tracking. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_getbitmapinfo(|)' hint='array swf_getbitmapinfo(int bitmapid) - Get information about a bitmap. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_getfontinfo()' hint='array swf_getfontinfo(void) - The height in pixels of a capital A and a lowercase x. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_getframe()' hint='int swf_getframe(void) - Get the frame number of the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_labelframe(|)' hint='void swf_labelframe(string name) - Label the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_modifyobject(|)' hint='void swf_modifyobject(int depth, int how) - Modify an object. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_mulcolor(|)' hint='void swf_mulcolor(float r, float g, float b, float a) - Sets the global multiply color to the rgba value specified. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_nextid()' hint='int swf_nextid(void) - Returns the next free object id. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_oncondition(|)' hint='void swf_oncondition(int transition) - Describe a transition used to trigger an action list. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_openfile(|)' hint='void swf_openfile(string filename, float width, float height, float framerate, float r, float g, float b) - Open a new Shockwave Flash file. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_ortho(|)' hint='void swf_ortho(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax) - Defines an orthographic mapping of user coordinates onto the current viewport. (4.0.1-4.3.2 only)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_ortho2(|)' hint='void swf_ortho2(float xmin, float xmax, float ymin, float ymax) - Defines 2D orthographic mapping of user coordinates onto the current viewport. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_posround(|)' hint='void swf_posround(int round) - Enables or Disables the rounding of the translation when objects are placed or moved. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_endsy - swf_p' inserttext='swf_pushmatrix()' hint='void swf_pushmatrix(void) - Push the current transformation matrix back unto the stack. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_removeobject(|)' hint='void swf_removeobject(int depth) - Remove an object. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_rotate(|)' hint='void swf_rotate(float angle, string axis) - Rotate the current transformation. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_scale(|)' hint='void swf_scale(float x, float y, float z) - Scale the current transformation. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_setfont(|)' hint='void swf_setfont(int fontid) - Change the current font. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_setframe(|)' hint='void swf_setframe(int framenumber) - Switch to a specified frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapearc(|)' hint='void swf_shapearc(float x, float y, float r, float ang1, float ang2) - Draw a circular arc. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapecurveto(|)' hint='void swf_shapecurveto(float x1, float y1, float x2, float y2) - Draw a quadratic bezier curve between two points. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapefillbitmapclip(|)' hint='void swf_shapefillbitmapclip(int bitmapid) - Set current fill mode to clipped bitmap. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapefillbitmaptile(|)' hint='void swf_shapefillbitmaptile(int bitmapid) - Set current fill mode to tiled bitmap. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapefilloff()' hint='void swf_shapefilloff(void) - Turns off filling. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapefillsolid(|)' hint='void swf_shapefillsolid(float r, float g, float b, float a) - Set the current fill style to the specified color. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapelinesolid(|)' hint='void swf_shapelinesolid(float r, float g, float b, float a, float width) - Set the current line style. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapelineto(|)' hint='void swf_shapelineto(float x, float y) - Draw a line. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_shapemoveto(|)' hint='void swf_shapemoveto(float x, float y) - Move the current position. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_showframe()' hint='void swf_showframe(void) - Display the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_startbutton(|)' hint='void swf_startbutton(int objid, int type) - Start the definition of a button. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_startdoaction()' hint='void swf_startdoaction(void) - Start a description of an action list for the current frame. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_startshape(|)' hint='void swf_startshape(int objid) - Start a complex shape. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_startsymbol(|)' hint='void swf_startsymbol(int objid) - Define a symbol. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_textwidth(|)' hint='float swf_textwidth(string str) - Get the width of a string. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_translate(|)' hint='void swf_translate(float x, float y, float z) - Translate the current transformations. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Shockwave Flash-->>swf_r - s' inserttext='swf_viewport(|)' hint='void swf_viewport(float xmin, float xmax, float ymin, float ymax) - Select an area for future drawing. (PHP 4<=4.3.2)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_accept(|)' hint='resource socket_accept(resource socket) - Accepts a connection on a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_bind(|)' hint='bool socket_bind(resource socket, string address [, int port]) - Binds a name to a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_clear_error(|)' hint='void socket_clear_error([resource socket]) - Clears the error on the socket or the last error code. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_connect(|)' hint='bool socket_connect(resource socket, string address [, int port]) - Initiates a connection on a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_create(|)' hint='resource socket_create(int domain, int type, int protocol) - Create a socket (endpoint for communication). (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_create_listen(|)' hint='resource socket_create_listen(int port [, int backlog]) - Opens a socket on port to accept connections. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_create_pair(|)' hint='bool socket_create_pair(int domain, int type, int protocol, array &fd) - Creates a pair of indistinguishable sockets and stores them in fds. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_get_option(|)' hint='mixed socket_get_option(resource socket, int level, int optname) - Gets socket options for the socket. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_getpeername(|)' hint='bool socket_getpeername(resource socket, string &addr [, int &port]) - Queries the remote side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_getsockname(|)' hint='bool socket_getsockname(resource socket, string &addr [, int &port]) - Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_add(|)' hint='bool socket_iovec_add(resource iovec, int iov_len) - Adds a new vector to the scatter/gather array. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_alloc(|)' hint="resource socket_iovec_alloc(int num_vectors [, int ]) - Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv. (PHP 4>=4.1.0)" flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_delete(|)' hint='bool socket_iovec_delete(resource iovec, int iov_pos) - Deletes a vector from an array of vectors. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_fetch(|)' hint='string socket_iovec_fetch(resource iovec, int iovec_position) - Returns the data held in the iovec specified by iovec_id[iovec_position]. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_free(|)' hint='bool socket_iovec_free(resource iovec) - Frees the iovec specified by iovec_id. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>s - socket_i' inserttext='socket_iovec_set(|)' hint='bool socket_iovec_set(resource iovec, int iovec_position, string new_val) - Sets the data held in iovec_id[iovec_position] to new_val. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_last_error(|)' hint='int socket_last_error([resource socket]) - Returns the last error on the socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_listen(|)' hint='bool socket_listen(resource socket [, int backlog]) - Listens for a connection on a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_read(|)' hint='string socket_read(resource socket, int length [, int type]) - Reads a maximum of length bytes from a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_readv(|)' hint='bool socket_readv(resource socket, resource iovec_id) - Reads from an fd, using the scatter-gather array defined by iovec_id. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_recv(|)' hint='int socket_recv(resource socket, string &buf, int len, int flags) - Receives data from a connected socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_recvfrom(|)' hint='int socket_recvfrom(resource socket, string &buf, int len, int flags, string &name [, int &port]) - Receives data from a socket, connected or not. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_recvmsg(|)' hint='bool socket_recvmsg(resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr [, int &port]) - Used to receive messages on a socket, whether connection-oriented or not. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_select(|)' hint='int socket_select(array &read, array &write, array &except, int tv_sec [, int tv_usec]) - Runs the select() system call on the given arrays of sockets with a specified timeout. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_send(|)' hint='int socket_send(resource socket, string buf, int len, int flags) - Sends data to a connected socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_sendmsg(|)' hint='bool socket_sendmsg(resource socket, resource iovec, int flags, string addr [, int port]) - Sends a message to a socket, regardless of whether it is connection-oriented or not. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_sendto(|)' hint='int socket_sendto(resource socket, string buf, int len, int flags, string addr [, int port]) - Sends a message to a socket, whether it is connected or not. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_set_block(|)' hint='bool socket_set_block(resource socket) - Sets blocking mode on a socket resource. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_set_nonblock(|)' hint='bool socket_set_nonblock(resource socket) - Sets nonblocking mode for file descriptor fd. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_set_option(|)' hint='bool socket_set_option(resource socket, int level, int optname, mixed optval) - Sets socket options for the socket. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_shutdown(|)' hint='bool socket_shutdown(resource socket [, int how]) - Shuts down a socket for receiving, sending, or both. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_strerror(|)' hint='string socket_strerror(int errno) - Return a string describing a socket error. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_write(|)' hint='int socket_write(resource socket, string buffer [, int length]) - Write to a socket. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Socket-->>socket_l - s' inserttext='socket_writev(|)' hint='bool socket_writev(resource socket, resource iovec_id) - Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_context_get_options(|)' hint='array stream_context_get_options(resource stream|context) - Retrieve options for a stream/wrapper/context. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_context_set_option(|)' hint='bool stream_context_set_option(resource context|stream, string wrapper, string option, mixed value) - Sets an option for a stream/wrapper/context. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_context_set_params(|)' hint='bool stream_context_set_params(resource stream|context, array params) - Set parameters for a stream/wrapper/context. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_copy_to_stream(|)' hint='int stream_copy_to_stream(resource source, resource dest [, int maxlength]) - Copies data from one stream to another. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_filter_append(|)' hint='bool stream_filter_append(resource stream, string filtername [, int read_write [, mixed params]]) - Attach a filter to a stream. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_filter_prepend(|)' hint='bool stream_filter_prepend(resource stream, string filtername [, int read_write [, mixed params]]) - Attach a filter to a stream. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_filter_register(|)' hint='bool stream_filter_register(string filtername, string classname) - Register a stream filter implemented as a PHP class derived from php_user_filter. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_contents(|)' hint='string stream_get_contents(resource handle [, int maxlength]) - Reads remainder of a stream into a string.' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_filters()' hint='array stream_get_filters(void) - Retrieve list of registered filters. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_line(|)' hint='string stream_get_line(resource handle, int length, string ending) - Gets line from stream resource up to a given delimiter. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_meta_data(|)' hint='array stream_get_meta_data(resource stream) - Retrieves header/meta data from streams/file pointers. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_transports()' hint='array stream_get_transports(void) - Retrieve list of registered socket transports. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_get_wrappers()' hint='array stream_get_wrappers(void) - Retrieve list of registered streams. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_select(|)' hint='int stream_select(resource &read, resource &write, resource &except, int tv_sec [, int tv_usec]) - Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_set_blocking(|)' hint='bool stream_set_blocking(resource stream, int mode) - Set blocking/non-blocking mode on a stream. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_set_timeout(|)' hint='bool stream_set_timeout(resource stream, int seconds [, int microseconds]) - Set timeout period on a stream. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_set_write_buffer(|)' hint='int stream_set_write_buffer(resource stream, int buffer) - Sets file buffering on the given stream. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_accept(|)' hint='resource stream_socket_accept(resource server_socket [, int timeout [, string &peername]]) - Accept a connection on a socket created by stream_socket_server(). (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_client(|)' hint='resource stream_socket_client(string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]]) - Open Internet or Unix domain socket connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_get_name(|)' hint='string stream_socket_get_name(resource handle, bool want_peer) - Retrieve the name of the local or remote sockets. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_recvfrom(|)' hint='string stream_socket_recvfrom(resource socket, int length [, int flags [, string &address]]) - Receives data from a socket, connected or not.' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_sendto(|)' hint='int stream_socket_sendto(resource socket, string data [, int flags [, string address]]) - Sends a message to a socket, whether it is connected or not.' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_socket_server(|)' hint='resource stream_socket_server(string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]]) - Create an Internet or Unix domain server socket. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='Stream' inserttext='stream_wrapper_register(|)' hint='bool stream_wrapper_register(string protocol, string classname) - Register a URL wrapper implemented as a PHP class. (PHP 4>=4.3.2)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='addcslashes(|)' hint='string addcslashes(string str, string charlist) - Quote string with slashes in a C style. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='chop(|)' hint='chop - Alias of rtrim().' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='chr(|)' hint='string chr(int ascii) - Return a specific character. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='chunk_split(|)' hint='string chunk_split(string body [, int chunklen [, string end]]) - Split a string into smaller chunks. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='convert_cyr_string(|)' hint='string convert_cyr_string(string str, string from, string to) - Convert from one Cyrillic character set to another. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='count_chars(|)' hint='mixed count_chars(string string [, int mode]) - Return information about characters used in a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='crc32(|)' hint='int crc32(string str) - Calculates the crc32 polynomial of a string. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='echo(|)' hint='void echo(string arg1 [, string argn...]) - Output one or more strings. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='explode(|)' hint='array explode(string separator, string string [, int limit]) - Split a string by string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='fprintf(|)' hint='int fprintf(resource handle, string format [, mixed args]) - Write a formatted string to a stream. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='get_html_translation_table(|)' hint='array get_html_translation_table(int table [, int quote_style]) - Returns the translation table used by htmlspecialchars() and htmlentities(). (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='hebrev(|)' hint='string hebrev(string hebrew_text [, int max_chars_per_line]) - Convert logical Hebrew text to visual text. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='hebrevc(|)' hint='string hebrevc(string hebrew_text [, int max_chars_per_line]) - Convert logical Hebrew text to visual text with newline conversion. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='html_entity_decode(|)' hint='string html_entity_decode(string string [, int quote_style [, string charset]]) - Convert all HTML entities to their applicable characters. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='htmlentities(|)' hint='string htmlentities(string string [, int quote_style [, string charset]]) - Convert all applicable characters to HTML entities. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='htmlspecialchars(|)' hint='string htmlspecialchars(string string [, int quote_style [, string charset]]) - Convert special characters to HTML entities. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='implode(|)' hint='string implode(string glue, array pieces) - Join array elements with a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>a - le' inserttext='join(|)' hint='join - Alias for implode().' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='ltrim(|)' hint='string ltrim(string str [, string charlist]) - Strip whitespace from the beginning of a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='md5(|)' hint='string md5(string str [, bool raw_output]) - Calculate the md5 hash of a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='md5_file(|)' hint='string md5_file(string filename [, bool raw_output]) - Calculates the md5 hash of a given filename. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='metaphone(|)' hint='string metaphone(string str) - Calculate the metaphone key of a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='money_format(|)' hint='string money_format(string format, float number) - Formats a number as a currency string. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='nl2br(|)' hint='string nl2br(string string) - Inserts HTML line breaks before all newlines in a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='nl_langinfo(|)' hint='string nl_langinfo(int item) - Query language and locale information. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='number_format(|)' hint='string number_format(float number [, int decimals]) - Format a number with grouped thousands. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>lo - sp' inserttext='ord(|)' hint='int ord(string string) - Return ASCII value of character. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='sscanf(|)' hint='mixed sscanf(string str, string format [, string var1]) - Parses input from a string according to a format. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_ireplace(|)' hint='mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &count]) - Case-insensitive version of str_replace(). (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_pad(|)' hint='string str_pad(string input, int pad_length [, string pad_string [, int pad_type]]) - Pad a string to a certain length with another string. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_repeat(|)' hint='string str_repeat(string input, int multiplier) - Repeat a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_replace(|)' hint='mixed str_replace(mixed search, mixed replace, mixed subject [, int &count]) - Replace all occurrences of the search string with the replacement string. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_rot13(|)' hint='string str_rot13(string str) - Perform the rot13 transform on a string. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_split(|)' hint='array str_split(string string [, int split_length]) - Convert a string to an array. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='str_word_count(|)' hint='mixed str_word_count(string string [, int format]) - Return information about words used in a string. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='String-->>ss - strna' inserttext='stripos(|)' hint='int stripos(string haystack, string needle [, int offset]) - Find position of first occurrence of a case-insensitive string. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strncasecmp(|)' hint='int strncasecmp(string str1, string str2, int len) - Binary safe case-insensitive string comparison of the first n characters. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strncmp(|)' hint='int strncmp(string str1, string str2, int len) - Binary safe string comparison of the first n characters. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strpos(|)' hint='int strpos(string haystack, string needle [, int offset]) - Find position of first occurrence of a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strrchr(|)' hint='string strrchr(string haystack, char needle) - Find the last occurrence of a character in a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strripos(|)' hint='int strripos(string haystack, string needle [, int offset]) - Find position of last occurrence of a case-insensitive string in a string. (PHP 5 CVS only)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='strrpos(|)' hint='int strrpos(string haystack, string needle [, int offset]) - Find position of last occurrence of a char in a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='substr(|)' hint='string substr(string string, int start [, int length]) - Return part of a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='substr_compare(|)' hint='int substr_compare(string main_str, string str, int offset [, int length [, bool case_sensitivity]]) - Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters.' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='substr_count(|)' hint='int substr_count(string haystack, string needle) - Count the number of substring occurrences. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='substr_replace(|)' hint='string substr_replace(string string, string replacement, int start [, int length]) - Replace text within a portion of a string. (PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='trim(|)' hint='string trim(string str [, string charlist]) - Strip whitespace from the beginning and end of a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='ucfirst(|)' hint="string ucfirst(string str) - Make a string's first character uppercase. (PHP 3, PHP 4)" flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='ucwords(|)' hint='string ucwords(string str) - Uppercase the first character of each word in a string. (PHP 3>=3.0.3, PHP 4)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='vprintf(|)' hint='void vprintf(string format, array args) - Output a formatted string. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='vsprintf(|)' hint='string vsprintf(string format, array args) - Return a formatted string. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='S' submenu='String-->>strnc - w' inserttext='wordwrap(|)' hint='string wordwrap(string str [, int width [, string break [, boolean cut]]]) - Wraps a string to a given number of characters using a string break character. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_affected_rows(|)' hint='int sybase_affected_rows([resource link_identifier]) - Gets number of affected rows in last query. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_fetch_assoc(|)' hint='array sybase_fetch_assoc(resource result) - Fetch a result row as an associative array. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_fetch_field(|)' hint='object sybase_fetch_field(resource result [, int field_offset]) - Get field information from a result. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_fetch_object(|)' hint='object sybase_fetch_object(resource result [, mixed object]) - Fetch a row as an object. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_fetch_row(|)' hint='array sybase_fetch_row(resource result) - Get a result row as an enumerated array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_field_seek(|)' hint='bool sybase_field_seek(resource result, int field_offset) - Sets field offset. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_get_last_message()' hint='string sybase_get_last_message(void) - Returns the last message from the server. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_num_fields(|)' hint='int sybase_num_fields(resource result) - Gets the number of fields in a result set. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_num_rows(|)' hint='int sybase_num_rows(resource result) - Get number of rows in a result set. (PHP 3, PHP 4)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_set_message_handler(|)' hint='bool sybase_set_message_handler(callback handler) - Sets the handler called when a server message is raised. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='S' submenu='Sybase' inserttext='sybase_unbuffered_query(|)' hint='resource sybase_unbuffered_query(string query, resource link_identifier) - Send a Sybase query and do not block. (PHP 4>=4.3.0)' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_access_count()' hint='int tidy_access_count(void) - Returns the Number of Tidy accessibility warnings encountered for specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_clean_repair()' hint='bool tidy_clean_repair(void) - Execute configured cleanup and repair operations on parsed markup.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_config_count()' hint='int tidy_config_count(void) - Returns the Number of Tidy configuration errors encountered for specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_diagnose()' hint='bool tidy_diagnose(void) - Run configured diagnostics on parsed and repaired markup.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_error_count()' hint='int tidy_error_count(void) - Returns the Number of Tidy errors encountered for specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_body(|)' hint='object tidy_get_body(resource tidy) - Returns a TidyNode Object starting from the <body> tag of the tidy parse tree.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_config()' hint='array tidy_get_config(void) - Get current Tidy configuration.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_error_buffer(|)' hint='string tidy_get_error_buffer([bool detailed]) - Return warnings and errors which occurred parsing the specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_head(|)' hint='object tidy_get_head(resource tidy) - Returns a TidyNode Object starting from the <head> tag of the tidy parse tree.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_html(|)' hint='object tidy_get_html(resource tidy) - Returns a TidyNode Object starting from the <html> tag of the tidy parse tree.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_html_ver()' hint='int tidy_get_html_ver(void) - Get the Detected HTML version for the specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_output()' hint='string tidy_get_output(void) - Return a string representing the parsed tidy markup.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_release()' hint='string tidy_get_release(void) - Get release date (version) for Tidy library.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_root()' hint='object tidy_get_root(void) - Returns a TidyNode Object representing the root of the tidy parse tree.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_get_status()' hint='int tidy_get_status(void) - Get status of specified document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_getopt(|)' hint='mixed tidy_getopt(string option) - Returns the value of the specified configuration option for the tidy document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_is_xhtml()' hint='bool tidy_is_xhtml(void) - Indicates if the document is a generic (non HTML/XHTML) XML document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_load_config(|)' hint='void tidy_load_config(string filename, string encoding) - Load an ASCII Tidy configuration file with the specified encoding.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_node->attributes()' hint='array tidy_node->attributes(void) - Returns an array of attribute objects for node.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_node->children()' hint='array tidy_node->children(void) - Returns an array of child nodes.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_node->get_attr(|)' hint='tidy_attr tidy_node->get_attr(int attrib_id) - Return the attribute with the provided attribute id.' flags='130'/>
<tag menu='T' submenu='Tidy-->>t - tidy_node->g' inserttext='tidy_node->get_nodes(|)' hint='array tidy_node->get_nodes(int node_id) - Return an array of nodes under this node with the specified id.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->has_children()' hint='bool tidy_node->has_children(void) - Returns true if this node has children.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->has_siblings()' hint='bool tidy_node->has_siblings(void) - Returns true if this node has siblings.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_asp()' hint='bool tidy_node->is_asp(void) - Returns true if this node is ASP.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_comment()' hint='bool tidy_node->is_comment(void) - Returns true if this node represents a comment.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_html()' hint='bool tidy_node->is_html(void) - Returns true if this node is part of a HTML document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_jsp()' hint='bool tidy_node->is_jsp(void) - Returns true if this node is JSP.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_jste()' hint='bool tidy_node->is_jste(void) - Returns true if this node is JSTE.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_text()' hint='bool tidy_node->is_text(void) - Returns true if this node represents text (no markup).' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_xhtml()' hint='bool tidy_node->is_xhtml(void) - Returns true if this node is part of a XHTML document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->is_xml()' hint='bool tidy_node->is_xml(void) - Returns true if this node is part of a XML document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->next()' hint='tidy_node tidy_node->next(void) - Returns the next sibling to this node.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_node->prev()' hint='tidy_node tidy_node->prev(void) - Returns the previous sibling to this node.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_save_config(|)' hint='bool tidy_save_config(string filename) - Save current settings to named file. Only non-default values are written.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_set_encoding(|)' hint='bool tidy_set_encoding(string encoding) - Set the input/output character encoding for parsing markup.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_setopt(|)' hint='bool tidy_setopt(string option, mixed newvalue) - Updates the configuration settings for the specified tidy document.' flags='130'/>
<tag menu='T' submenu='Tidy-->>tidy_node->h - t' inserttext='tidy_warning_count()' hint='int tidy_warning_count(void) - Returns the Number of Tidy warnings encountered for specified document.' flags='130'/>
<tag menu='T' submenu='Tokenizer' inserttext='token_get_all(|)' hint='array token_get_all(string source) - Split given source into PHP tokens. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='T' submenu='Tokenizer' inserttext='token_name(|)' hint='string token_name(int token) - Get the symbolic name of a given PHP token. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='U' submenu='URL' inserttext='base64_decode(|)' hint='string base64_decode(string encoded_data) - Decodes data encoded with MIME base64. (PHP 3, PHP 4)' flags='130'/>
<tag menu='U' submenu='URL' inserttext='base64_encode(|)' hint='string base64_encode(string data) - Encodes data with MIME base64. (PHP 3, PHP 4)' flags='130'/>
<tag menu='U' submenu='URL' inserttext='get_meta_tags(|)' hint='array get_meta_tags(string filename [, int use_include_path]) - Extracts all meta tag content attributes from a file and returns an array. (PHP 3>=3.0.4, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_close(|)' hint='void odbc_close(resource connection_id) - Close an ODBC connection. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_close_all()' hint='void odbc_close_all(void) - Close all ODBC connections. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_columnprivileges(|)' hint='int odbc_columnprivileges(resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]]) - Returns a result identifier that can be used to fetch a list of columns and associated privileges. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_columns(|)' hint='resource odbc_columns(resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]]) - Lists the column names in specified tables. Returns a result identifier containing the information. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_fetch_array(|)' hint='array odbc_fetch_array(resource result [, int rownumber]) - Fetch a result row as an associative array. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_fetch_into(|)' hint='bool odbc_fetch_into(resource result_id [, int rownumber, array result_array]) - Fetch one result row into array. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_fetch_object(|)' hint='object odbc_fetch_object(resource result [, int rownumber]) - Fetch a result row as an object. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_field_len(|)' hint='int odbc_field_len(resource result_id, int field_number) - Get the length (precision) of a field. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>o - odbc_field_n' inserttext='odbc_field_name(|)' hint='string odbc_field_name(resource result_id, int field_number) - Get the columnname. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_field_precision(|)' hint='string odbc_field_precision(resource result_id, int field_number) - Synonym for odbc_field_len(). (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_field_scale(|)' hint='string odbc_field_scale(resource result_id, int field_number) - Get the scale of a field. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_field_type(|)' hint='string odbc_field_type(resource result_id, int field_number) - Datatype of a field. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_foreignkeys(|)' hint='resource odbc_foreignkeys(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table) - Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_free_result(|)' hint='bool odbc_free_result(resource result_id) - Free resources associated with a result. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_gettypeinfo(|)' hint='int odbc_gettypeinfo(resource connection_id [, int data_type]) - Returns a result identifier containing information about data types supported by the data source. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_longreadlen(|)' hint='int odbc_longreadlen(resource result_id, int length) - Handling of LONG columns. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_next_result(|)' hint='bool odbc_next_result(resource result_id) - Checks if multiple results are available. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_num_fields(|)' hint='int odbc_num_fields(resource result_id) - Number of columns in a result. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_num_rows(|)' hint='int odbc_num_rows(resource result_id) - Number of rows in a result. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_pconnect(|)' hint='resource odbc_pconnect(string dsn, string user, string password [, int cursor_type]) - Open a persistent database connection. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_prepare(|)' hint='resource odbc_prepare(resource connection_id, string query_string) - Prepares a statement for execution. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_primarykeys(|)' hint='resource odbc_primarykeys(resource connection_id, string qualifier, string owner, string table) - Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_procedurecolumns(|)' hint='resource odbc_procedurecolumns(resource connection_id [, string qualifier [, string owner [, string proc [, string column]]]]) - Retrieve information about parameters to procedures. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_procedures(|)' hint='resource odbc_procedures(resource connection_id [, string qualifier [, string owner [, string name]]]) - Get the list of procedures stored in a specific data source. Returns a result identifier containing the information. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_result(|)' hint='string odbc_result(resource result_id, mixed field) - Get result data. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_result_all(|)' hint='int odbc_result_all(resource result_id [, string format]) - Print result as HTML table. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_rollback(|)' hint='int odbc_rollback(resource connection_id) - Rollback a transaction. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_setoption(|)' hint='int odbc_setoption(resource id, int function, int option, int param) - Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_specialcolumns(|)' hint='resource odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable) - Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_statistics(|)' hint='resource odbc_statistics(resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy) - Retrieve statistics about a table. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_tableprivileges(|)' hint='int odbc_tableprivileges(resource connection_id [, string qualifier [, string owner [, string name]]]) - Lists tables and the privileges associated with each table. (PHP 4)' flags='130'/>
<tag menu='U' submenu='Unified ODBC-->>odbc_field_p - o' inserttext='odbc_tables(|)' hint='int odbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string types]]]]) - Get the list of table names stored in a specific data source. Returns a result identifier containing the information. (PHP 3>=3.0.17, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='doubleval(|)' hint='doubleval - Alias of floatval().' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='floatval(|)' hint='float floatval(mixed var) - Get float value of a variable. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='get_defined_vars()' hint='array get_defined_vars(void) - Returns an array of all defined variables. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='gettype(|)' hint='string gettype(mixed var) - Get the type of a variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='import_request_variables(|)' hint='bool import_request_variables(string types [, string prefix]) - Import GET/POST/Cookie variables into the global scope. (PHP 4>=4.1.0)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='intval(|)' hint='int intval(mixed var [, int base]) - Get integer value of a variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_array(|)' hint='bool is_array(mixed var) - Finds whether a variable is an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_bool(|)' hint='bool is_bool(mixed var) - Finds out whether a variable is a boolean. (PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_callable(|)' hint='bool is_callable(mixed var [, bool syntax_only [, string callable_name]]) - Verify that the contents of a variable can be called as a function. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_double(|)' hint='is_double - Alias of is_float().' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_float(|)' hint='bool is_float(mixed var) - Finds whether a variable is a float. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_int(|)' hint='bool is_int(mixed var) - Find whether a variable is an integer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_integer(|)' hint='is_integer - Alias of is_int().' flags='130'/>
<tag menu='V' submenu='Variable-->>d - is_l' inserttext='is_long(|)' hint='is_long - Alias of is_int().' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_null(|)' hint='bool is_null(mixed var) - Finds whether a variable is NULL. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_numeric(|)' hint='bool is_numeric(mixed var) - Finds whether a variable is a number or a numeric string. (PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_object(|)' hint='bool is_object(mixed var) - Finds whether a variable is an object. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_real(|)' hint='is_real - Alias of is_float().' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_resource(|)' hint='bool is_resource(mixed var) - Finds whether a variable is a resource. (PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_scalar(|)' hint='bool is_scalar(mixed var) - Finds whether a variable is a scalar. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='is_string(|)' hint='bool is_string(mixed var) - Finds whether a variable is a string. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='isset(|)' hint='bool isset(mixed var [, mixed var [, ...]]) - Determine whether a variable is set. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='print_r(|)' hint='bool print_r(mixed expression [, bool return]) - Prints human-readable information about a variable. (PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='serialize(|)' hint='string serialize(mixed value) - Generates a storable representation of a value. (PHP 3>=3.0.5, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='settype(|)' hint='bool settype(mixed var, string type) - Set the type of a variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='strval(|)' hint='string strval(mixed var) - Get string value of a variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='unserialize(|)' hint='mixed unserialize(string str) - Creates a PHP value from a stored representation. (PHP 3>=3.0.5, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='unset(|)' hint='void unset(mixed var [, mixed var [, ...]]) - Unset a given variable. (PHP 3, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='var_dump(|)' hint='void var_dump(mixed expression [, mixed expression [, ...]]) - Dumps information about a variable. (PHP 3>=3.0.5, PHP 4)' flags='130'/>
<tag menu='V' submenu='Variable-->>is_n - v' inserttext='var_export(|)' hint='mixed var_export(mixed expression [, bool return]) - Outputs or returns a parsable string representation of a variable. (PHP 4>=4.2.0)' flags='130'/>
<tag menu='V' submenu='Verisign Payflow Pro' inserttext='pfpro_cleanup()' hint='void pfpro_cleanup(void) - Shuts down the Payflow Pro library. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='V' submenu='Verisign Payflow Pro' inserttext='pfpro_init()' hint='void pfpro_init(void) - Initialises the Payflow Pro library. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='V' submenu='Verisign Payflow Pro' inserttext='pfpro_process(|)' hint='array pfpro_process(array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) - Process a transaction with Payflow Pro. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='V' submenu='Verisign Payflow Pro' inserttext='pfpro_process_raw(|)' hint='string pfpro_process_raw(string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) - Process a raw transaction with Payflow Pro. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='V' submenu='Verisign Payflow Pro' inserttext='pfpro_version()' hint='string pfpro_version(void) - Returns the version of the Payflow Pro software. (PHP 4>=4.0.2)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_add_alias_domain(|)' hint='bool vpopmail_add_alias_domain(string domain, string aliasdomain) - Add an alias for a virtual domain. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_add_alias_domain_ex(|)' hint='bool vpopmail_add_alias_domain_ex(string olddomain, string newdomain) - Add alias to an existing virtual domain. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_add_domain(|)' hint='bool vpopmail_add_domain(string domain, string dir, int uid, int gid) - Add a new virtual domain. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_alias_del(|)' hint='bool vpopmail_alias_del(string user, string domain) - Deletes all virtual aliases of a user. (4.1.0-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_alias_del_domain(|)' hint='bool vpopmail_alias_del_domain(string domain) - Deletes all virtual aliases of a domain. (4.1.0-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_alias_get(|)' hint='array vpopmail_alias_get(string alias, string domain) - Get all lines of an alias for a domain. (4.1.0-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_alias_get_all(|)' hint='array vpopmail_alias_get_all(string domain) - Get all lines of an alias for a domain. (4.1.0-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_del_user(|)' hint='bool vpopmail_del_user(string user, string domain) - Delete a user from a virtual domain. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='V' submenu='vpopmail' inserttext='vpopmail_error()' hint='string vpopmail_error(void) - Get text message for last vpopmail error. Returns string. (4.0.5-4.2.3 only)' flags='130'/>
<tag menu='W' submenu='W32api' inserttext='w32api_deftype(|)' hint='bool w32api_deftype(string typename, string member1_type, string member1_name [, string ... [, string ...]]) - Defines a type for use with other w32api_functions. (4.2.0-4.2.3 only)' flags='130'/>
<tag menu='W' submenu='W32api' inserttext='w32api_init_dtype(|)' hint='resource w32api_init_dtype(string typename, mixed value [, mixed ...]) - Creates an instance of the data type typename and fills it with the values passed. (4.2.0-4.2.3 only)' flags='130'/>
<tag menu='W' submenu='W32api' inserttext='w32api_invoke_function(|)' hint='mixed w32api_invoke_function(string funcname, mixed argument [, mixed ...]) - Invokes function funcname with the arguments passed after the function name. (4.2.0-4.2.3 only)' flags='130'/>
<tag menu='W' submenu='W32api' inserttext='w32api_register_function(|)' hint='bool w32api_register_function(string library, string function_name, string return_type) - Registers function function_name from library with PHP. (4.2.0-4.2.3 only)' flags='130'/>
<tag menu='W' submenu='WDDX' inserttext='wddx_packet_end(|)' hint='string wddx_packet_end(int packet_id) - Ends a WDDX packet with the specified ID. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='W' submenu='WDDX' inserttext='wddx_packet_start(|)' hint='int wddx_packet_start([string comment]) - Starts a new WDDX packet with structure inside it. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='W' submenu='WDDX' inserttext='wddx_serialize_value(|)' hint='string wddx_serialize_value(mixed var [, string comment]) - Serialize a single value into a WDDX packet. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='utf8_decode(|)' hint='string utf8_decode(string data) - Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='utf8_encode(|)' hint='string utf8_encode(string data) - Encodes an ISO-8859-1 string to UTF-8. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_error_string(|)' hint='string xml_error_string(int code) - Get XML parser error string. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_get_current_byte_index(|)' hint='int xml_get_current_byte_index(resource parser) - Get current byte index for an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_get_current_column_number(|)' hint='int xml_get_current_column_number(resource parser) - Get current column number for an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_get_current_line_number(|)' hint='int xml_get_current_line_number(resource parser) - Get current line number for an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_get_error_code(|)' hint='int xml_get_error_code(resource parser) - Get XML parser error code. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parse(|)' hint='bool xml_parse(resource parser, string data [, bool is_final]) - Start parsing an XML document. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parse_into_struct(|)' hint='int xml_parse_into_struct(resource parser, string data, array &values [, array &index]) - Parse XML data into an array structure. (PHP 3>=3.0.8, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parser_create(|)' hint='resource xml_parser_create([string encoding]) - Create an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parser_create_ns(|)' hint='resource xml_parser_create_ns([string encoding [, string separator]]) - Create an XML parser with namespace support. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parser_free(|)' hint='bool xml_parser_free(resource parser) - Free an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parser_get_option(|)' hint='mixed xml_parser_get_option(resource parser, int option) - Get options from an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_parser_set_option(|)' hint='bool xml_parser_set_option(resource parser, int option, mixed value) - Set options in an XML parser. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_character_data_handler(|)' hint='bool xml_set_character_data_handler(resource parser, callback handler) - Set up character data handler. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_default_handler(|)' hint='bool xml_set_default_handler(resource parser, callback handler) - Set up default handler. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_element_handler(|)' hint='bool xml_set_element_handler(resource parser, callback start_element_handler, callback end_element_handler) - Set up start and end element handlers. (PHP 3>=3.0.6, PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_end_namespace_decl_handler(|)' hint='bool xml_set_end_namespace_decl_handler(resource pind, callback handler) - Set up character data handler. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_object(|)' hint='void xml_set_object(resource parser, object object) - Use XML Parser within an object. (PHP 4)' flags='130'/>
<tag menu='X' submenu='XML parser' inserttext='xml_set_start_namespace_decl_handler(|)' hint='bool xml_set_start_namespace_decl_handler(resource pind, callback hdl) - Set up character data handler. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_base(|)' hint='void xslt_set_base(resource xh, string uri) - Set the base URI for all XSLT transformations. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_encoding(|)' hint='void xslt_set_encoding(resource xh, string encoding) - Set the encoding for the parsing of XML documents. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_error_handler(|)' hint='void xslt_set_error_handler(resource xh, mixed handler) - Set an error handler for a XSLT processor. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_log(|)' hint='void xslt_set_log(resource xh, mixed log) - Set the log file to write log messages to. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_sax_handler(|)' hint='void xslt_set_sax_handler(resource xh, array handlers) - Set SAX handlers for a XSLT processor. (4.0.3-4.0.6 only)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_sax_handlers(|)' hint='void xslt_set_sax_handlers(resource processor, array handlers) - Set the SAX handlers to be called when the XML document gets processed. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_scheme_handler(|)' hint='void xslt_set_scheme_handler(resource xh, array handlers) - Set Scheme handlers for a XSLT processor. (4.0.5-4.0.6 only)' flags='130'/>
<tag menu='X' submenu='XSLT' inserttext='xslt_set_scheme_handlers(|)' hint='void xslt_set_scheme_handlers(resource processor, array handlers) - Set the scheme handlers for the XSLT processor. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_get_option(|)' hint='string yaz_get_option(resource id, string name) - Returns value of option for connection. (PHP 5 CVS only)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_hits(|)' hint='int yaz_hits(resource id) - Returns number of hits for last search. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_itemorder(|)' hint='int yaz_itemorder(resource id, array args) - Prepares for Z39.50 Item Order with an ILL-Request package. (PHP 4>=4.0.5)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_range(|)' hint='bool yaz_range(resource id, int start, int number) - Specifies the maximum number of records to retrieve. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_record(|)' hint='string yaz_record(resource id, int pos, string type) - Returns a record. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_syntax(|)' hint='int yaz_syntax(resource id, string syntax) - Specifies the preferred record syntax for retrieval. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Y' submenu='YAZ' inserttext='yaz_wait(|)' hint='int yaz_wait([array options]) - Wait for Z39.50 requests to complete. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_all(|)' hint='void yp_all(string domain, string map, string callback) - Traverse the map and call a function on each entry. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_cat(|)' hint='array yp_cat(string domain, string map) - Return an array containing the entire map. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_err_string(|)' hint='string yp_err_string(int errorcode) - Returns the error string associated with the given error code. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_errno()' hint='int yp_errno(void) - Returns the error code of the previous operation. (PHP 4>=4.0.6)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_first(|)' hint='array yp_first(string domain, string map) - Returns the first key-value pair from the named map. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_master(|)' hint='string yp_master(string domain, string map) - Returns the machine name of the master NIS server for a map. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_next(|)' hint='array yp_next(string domain, string map, string key) - Returns the next key-value pair in the named map. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='Y' submenu='YP/NIS' inserttext='yp_order(|)' hint='int yp_order(string domain, string map) - Returns the order number for a map. (PHP 3>=3.0.7, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_close(|)' hint='void zip_close(resource zip) - Close a Zip File Archive. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_close(|)' hint='void zip_entry_close(resource zip_entry) - Close a Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_compressedsize(|)' hint='int zip_entry_compressedsize(resource zip_entry) - Retrieve the Compressed Size of a Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_compressionmethod(|)' hint='string zip_entry_compressionmethod(resource zip_entry) - Retrieve the Compression Method of a Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_filesize(|)' hint='int zip_entry_filesize(resource zip_entry) - Retrieve the Actual File Size of a Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_name(|)' hint='string zip_entry_name(resource zip_entry) - Retrieve the Name of a Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_open(|)' hint='bool zip_entry_open(resource zip, resource zip_entry [, string mode]) - Open a Directory Entry for Reading. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_entry_read(|)' hint='string zip_entry_read(resource zip_entry [, int length]) - Read From an Open Directory Entry. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_open(|)' hint='resource zip_open(string filename) - Open a Zip File Archive. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zip File (Read Only Access)' inserttext='zip_read(|)' hint='resource zip_read(resource zip) - Read Next Entry in a Zip File Archive. (4.1.0-4.3.2 only)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzclose(|)' hint='int gzclose(resource zp) - Close an open gz-file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzcompress(|)' hint='string gzcompress(string data [, int level]) - Compress a string. (PHP 4>=4.0.1)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzdeflate(|)' hint='string gzdeflate(string data [, int level]) - Deflate a string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzencode(|)' hint='string gzencode(string data [, int level [, int encoding_mode]]) - Create a gzip compressed string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzeof(|)' hint='int gzeof(resource zp) - Test for end-of-file on a gz-file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzfile(|)' hint='array gzfile(string filename [, int use_include_path]) - Read entire gz-file into an array. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzgetc(|)' hint='string gzgetc(resource zp) - Get character from gz-file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzgets(|)' hint='string gzgets(resource zp, int length) - Get line from file pointer. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzgetss(|)' hint='string gzgetss(resource zp, int length [, string allowable_tags]) - Get line from gz-file pointer and strip HTML tags. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='gzinflate(|)' hint='string gzinflate(string data [, int length]) - Inflate a deflated string. (PHP 4>=4.0.4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='readgzfile(|)' hint='int readgzfile(string filename [, int use_include_path]) - Output a gz-file. (PHP 3, PHP 4)' flags='130'/>
<tag menu='Z' submenu='Zlib Compression' inserttext='zlib_get_coding_type()' hint='string zlib_get_coding_type(void) - Returns the coding type used for output compression. (PHP 4>=4.3.2)' flags='130'/>